Chapter 04
Chapter 04
Chapter 4
Threads, SMP, and
Microkernels
Dave Bremer
Otago Polytechnic, N.Z.
©2008, Prentice Hall
Roadmap
• Threads: Resource ownership and
execution
• Symmetric multiprocessing (SMP).
• Microkernel
• Case Studies of threads and SMP:
– Windows
– Solaris
– Linux
Processes and Threads
• Processes have two characteristics:
– Resource ownership - process includes a
virtual address space to hold the process
image
– Scheduling/execution - follows an execution
path that may be interleaved with other
processes
• These two characteristics are treated
independently by the operating system
Processes and Threads
• The unit of dispatching is referred to as a
thread or lightweight process
• The unit of resource ownership is referred
to as a process or task
Multithreading
• The ability of an
OS to support
multiple,
concurrent paths
of execution within
a single process.
Single Thread
Approaches
• MS-DOS supports a
single user process
and a single thread.
• Some UNIX, support
multiple user
processes but only
support one thread
per process
Multithreading
• Java run-time
environment is a
single process with
multiple threads
• Multiple processes
and threads are found
in Windows, Solaris,
and many modern
versions of UNIX
Processes
• A virtual address space which holds the
process image
• Protected access to
– Processors,
– Other processes,
– Files,
– I/O resources
One or More Threads in
Process
• Each thread has
– An execution state (running, ready, etc.)
– Saved thread context when not running
– An execution stack
– Some per-thread static storage for local
variables
– Access to the memory and resources of its
process (all threads of a process share this)
One view…