Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process:...

38
Threads, SMP, and Microkernels Chapter 4

Transcript of Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process:...

Page 1: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Threads, SMP, and Microkernels

Chapter 4

Page 2: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Thread motivation

• Characteristics of a process:

– Resource ownership - process is allocated 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

Page 3: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Processes and threads

• Separate execution from ownership

– Dispatching is referred to as a thread

– Resource of ownership is referred to as a process or task

Page 4: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Multithreading

• OS supports multiple threads of execution within a single process

• MS-DOS : a single thread• UNIX:

– multiple user processes

– one thread per process

• Windows 2000, Solaris, Linux, OS/2 :– multiple user processes

– multiple threads

Page 5: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.
Page 6: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

In a multithread environment

A process is associated with:

• A virtual address space which holds the process image

• Protected access to processors, other processes, files, and I/O resources

Page 7: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

In a multithread environment

A thread is associated with:

• An execution state (running, ready, etc.)

• Saved thread context when not running

• Has 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

Page 8: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.
Page 9: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Benefits of Threads

• Takes less time to create a new thread than a process

• Less time to terminate a thread than a process• Less time to switch between two threads

within the same process• Since threads within the same process share

memory and files, they can communicate with each other without invoking the kernel

Page 10: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Thread states

• Suspending a process involves suspending all threads of the process since all threads share the same address space

• Termination of a process, terminates all threads within the process

Page 11: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Thread States

• States associated with a change in thread state– Spawn

• Spawn another thread

– Block– Unblock– Finish

• Deallocate register context and stacks

Page 12: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Remote Procedure Call Using Threads

Page 13: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Remote Procedure Call Using Threads

Page 14: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Thread issues

Two important issues:

• thread state vs process state - how does the thread state affect the process state?

– Depends on the implementation - ULT, KLT, combined

• thread synchronization • all threads of a process share the same address space

an other resources activities must be synchronized to prevent

interference.

Page 15: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Thread and process states

• Process: running– thread 1 - ready– thread 2 - running

• Process: blocked– thread 1 - ready– thread 2 - “running “

Page 16: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Thread and process states

• Process: ready– thread 1 - ready– thread 2 - “running”

• Process: running– thread 1 - running– thread 2 - blocked

– see Figure 4.7

Page 17: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

A Java Thread(Deitel &Deitel, Java How to Program, 1998, 2nd ed.)

Page 18: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

User-Level Threads

• All thread management is done by the application

• The kernel is not aware of the existence of threads

Page 19: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

ULT Management

• Threads Library - a package of routines for ULT management:

• creating and destroying threads

• passing messages and data between threads

• scheduling thread execution

• saving and restoring thread contexts

Page 20: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Kernel-Level Threads

• W2K, Linux, and OS/2 are examples of this approach

• Kernel maintains context information for the process and the threads

• Scheduling is done on a thread basis

Page 21: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Combined Approaches

• Example is Solaris

• Thread creation done in the user space

• Bulk of scheduling and synchronization of threads done in the user space

• Mapping ULTs from a single application onto some (smaller or equal) number of KLTs.

Page 22: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.
Page 23: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Advantages and Disadvantages

• Advantages of ULT

• thread switching does not require kernel mode privileges because all of the thread management structures are within the user address space of a single process

• scheduling can be application specific

• can run on any operating system. No changes to kernel support for the ULT’s

Page 24: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Advantages and Disadvantages

• Disadvantages of ULT

• When a ULT executes a system call not only the thread is blocked but all of the threads within a process are blocked.

• Pure ULT multithreaded application can’t take advantage of multiprocessing. A kernel assigns only 1 process to a processor at a time.

Page 25: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Advantages and Disadvantages

• Advantages of KLT - can use multiprocessors

• Disadvantages of KLT – transfer of control from one thread to another within the same process requires a switch mode to the kernel

Page 26: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Categories of Computer Systems

• Single Instruction Single Data (SISD)– single processor executes a single

instruction stream to operate on data stored in a single memory

• Single Instruction Multiple Data (SIMD)– each instruction is executed on a different

set of data by the different processors

Page 27: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Categories of Computer Systems

• Multiple Instruction Single Data (MISD)– a sequence of data is transmitted to a set of

processors, each of which executes a different instruction sequence. Never implemented

• Multiple Instruction Multiple Data (MIMD)– a set of processors simultaneously execute

different instruction sequences on different data sets

Page 28: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.
Page 29: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Symmetric Multiprocessing

• Kernel can execute on any processor

• Typically each processor does self-scheduling form the pool of available process or threads

Page 30: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.
Page 31: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Multiprocessor Operating System Design Considerations• Simultaneous concurrent processes or

threads

• Scheduling

• Synchronization

• Memory Management

• Reliability and Fault Tolerance

Page 32: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Kernel Architectures

• Layered operating systems - functions are organized hierarchically and interaction only takes place between adjacent layers.

• Microkernel architecture – only absolutely essential core system functions are in the kernel.

Page 33: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Microkernels

• Small operating system core• Contains only essential operating systems

functions• Many services traditionally included in the

operating system are now external subsystems– device drivers– file systems– virtual memory manager– windowing system– security services

Page 34: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Benefits of a Microkernel Organization

• Uniform interface on request made by a process– All services are provided by means of

message passing

• Extensibility– Allows the addition of new services

• Flexibility– New features added– Existing features can be subtracted

Page 35: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Benefits of a Microkernel Organization

• Portability– Changes needed to port the system to a new

processor is changed in the microkernel - not in the other services

• Reliability– Modular design– Small microkernel can be rigorously tested

Page 36: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Benefits of Microkernel Organization

• Distributed system support– Message are sent without knowing what the

target machine is

• Object-oriented operating system– Components are objects with clearly

defined interfaces that can be interconnected to form software

Page 37: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Potential disadvantages of microkernels

• Performance - it takes longer to build and send a message via the microkernel, and accept and decode the reply, than to make a single service call.

• Performance depends on the size of the kernel

• small microkernel improves flexibility and reliability

Page 38: Threads, SMP, and Microkernels Chapter 4. Thread motivation Characteristics of a process: –Resource ownership - process is allocated a virtual address.

Microkernel Design

• Low-level memory management– mapping each virtual page to a physical

page frame

• Inter-process communication – messages– ports

• I/O and interrupt management