Multi Threading Models in Process Management
Many operating systems support kernel thread and user thread in a combined way. Example of such system is Solaris. Multi threading model are of three types.
Many to many model. Many to one model. one to one model.
Many to Many Model
In this model, we have multiple user threads multiplex to same or lesser number of kernel level threads. Number of kernel level threads are specific to the machine, advantage of this model is if a user thread is blocked we can schedule others user thread to other kernel thread. Thus, System doesn’t block if a particular thread is blocked.
Many to One Model
In this model, we have multiple user threads mapped to one kernel thread. In this model when a user thread makes a blocking system call entire process blocks. As we have only one kernel thread and only one user thread can access kernel at a time, so multiple threads are not able access multiprocessor at the same time.
One to One Model
In this model, one to one relationship between kernel and user thread. In this model multiple thread can run on multiple processor. Problem with this model is that creating a user thread requires the corresponding kernel thread.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
Recommended Posts:
- Introduction of Process Management
- Operating Systems | Process Management | Question 6
- Process states and Transitions in a UNIX Process
- Process Table and Process Control Block (PCB)
- Pass the value from child process to parent process
- Process Scheduler : Job and Process Status
- Overlays in Memory Management
- Program for Next Fit algorithm in Memory Management
- Requirements of Memory Management System
- Free space management in Operating System
- Implementing Directory Management using Shell Script
- Partition Allocation Methods in Memory Management
- Operating Systems | Memory Management | Question 1
- Process Synchronization | Set 2
- Semaphores in Process Synchronization