| The word multithreading can be translated as multiple threads of control or multiple flows of control. While a
traditional UNIX process always has contained and still does contain a single thread of control, multithreading (MT)
separates a process into many execution threads, each of which runs independently.
Benifits Of Multithreading:
1. Improving Application Responsiveness
2. Using Multiprocessors Efficiently.
3. Improving Program Structure.
4. Using Fewer System Resources.
5. Combining Threads and RPC.
|