what are the Architectural differences between User-space
threads, and Kernel-supported threads.

Answer Posted / guest

User-space threads live without any support from the
kernel; they maintain all of their state in user space.
Since the kernel does not know about them, they cannot be
scheduled to run on multiple processors in parallel.
Kernel-supported threads fall into two classes.

In a "pure" kernel-supported system, the kernel is
responsible for scheduling all threads.

Systems in which the kernel cooperates with a user-level
library to do scheduling are known as two-level, or hybrid,
systems. Typically, the kernel schedules LWPs, and the user-
level library schedules threads onto LWPs.
Because of its performance problems (caused by the need to
cross the user/kernel protection boundary twice for every
thread context switch), the former class has fewer members
than does the latter (at least on Unix variants). Both
classes allow threads to be run across multiple processors
in parallel.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain critical section?

612


What is protection boundary?

684


What is the window of the working set of a process?

643


Explain how to work unix commands on windows xp without installing unix o/s in pc?

491


How to work unix commands on windows xp without installing unix o/s in pc?

522






Explain what is protection boundary?

574


If your server is running on Unix and one of the sessions are keep on running without loading any data. how would you kill it?

627


How would you kill a process?

633


Explain the performance differences between user-space threads and kernel-supported threads.?

601


Explain what are threads?

635


Tell me when should we use thread-safe "_r" library calls?

538


Explain what is scheduling?

614


Explain what is critical section?

555


Explain what are the main families of threads?

572


What is the working set of a process?

605