chapter 4 threads
play

Chapter 4: Threads Process Scheduling Process Creation and - PowerPoint PPT Presentation

Recap Process Concepts Chapter 4: Threads Process Scheduling Process Creation and Termination Inter-process Communication Communication in Client-Server Systems Presented By: Dr. El-Sayed M. El-Alfy Note: Most of the slides


  1. Recap � Process Concepts Chapter 4: Threads � Process Scheduling � Process Creation and Termination � Inter-process Communication � Communication in Client-Server Systems Presented By: Dr. El-Sayed M. El-Alfy Note: Most of the slides are compiled from the textbook and its complementary resources March 08 1 March 08 2 Objectives/Outline Overview � A thread is a basic unit of CPU utilization and Objectives Outline sometimes is called a lightweight process (LWP) To introduce the concept of Overview � � � A traditional (heavyweight) process has a single thread threads and multithreading Multithreading Models � of control models Thread Libraries � � Each thread has: Threading Issues � � thread ID, program counter, register set, and stack To discuss the APIs for � OS Examples � � It shares with other threads belonging to the same Pthreads, Win32 and Java process: � code section, data section, other OS resources such as open To explore how Windows and � files and signals Linux OSs support threads at � If the process has multiple threads of control, it can do the kernel level more than one task at a time 3 4 March 08 March 08

  2. Overview (Cont.): Single threaded vs. Overview (Cont.): Threads Versus Processes multithreaded A simple way to think about a process is as an address space (containing � code, data, etc.) in which there is a single thread of execution The thread is the active part of a process � March 08 5 March 08 6 Overview (Cont.): Motivation Overview (Cont.): Motivation � A process can do several things concurrently by running � Benefits more than a single thread � Responsiveness: multithreading is useful in an interactive application. � Each thread is a different stream of control that can execute E.g., a multithreaded web browser can allow user interaction even though an image is still downloading its instructions independently � Resource sharing: threads share memory and resources allocated to � Examples the process to which they belong, e.g. code sharing, where different � A web Browser may have: threads of activity all within the same address space � A thread to display images or text � Economy: allocating memory and resources for process creation is � A thread to retrieve data from the network costly but it is more economical to create and context-switch threads � Word processor may have � Utilization of multiprocessor architectures: threads may run in parallel � A thread to display graphics on different processors; hence increase the utilization � A thread to respond to keystrokes from the user � A thread to perform spelling and grammar checking 7 8 March 08 March 08

  3. Multithreading Models: Many-to-One Multithreading Models � Support of thread can be either at user level (user threads) or at the kernel level (kernel threads) Maps many user threads to one � � User threads: kernel thread � Supported above the kernel and managed without kernel support Thread management is done by � � Implemented by the thread library at the user level the thread library in user space; � User thread are generally fast to create and manage Efficient � Example of user thread libraries: Pthreads and Mach C-threads Drawbacks � � Kernel threads: Entire process will block if a � � The kernel performs creation, scheduling, and management thread makes a blocking system � call Supported by the OS such as Windows XP, Linux, Mac OS X, Solaris and True64 Unix Unable to run multiple threads � � in parallel on multiprocessors Relationship between user threads and kernel threads � Example: Green threads library � Many-to-one model for Solaris � One-to-one model � Many-to-many model March 08 9 March 08 10 Multithreading Models – Many-to-Many Multithreading Models – One-to-One � multiplex many user-level threads to a smaller or equal number of kernel threads � The number of kernel threads may be specific to either a particular application or a particular machine � An application may be allocated � Maps each user thread to a kernel thread more threads on a � multiprocessor than a Provides more concurrency than the many-to-one model (i.e., the kernel uniprocessor machine allows another thread to run when a thread makes a blocking system call) � Tow-level model: a popular � Allows multiple threads to run in parallel on multiprocessors variation of many-to-many � Drawback which allows ULT to bound to KTL � creating a user thread requires creating the corresponding kernel thread which � Example: Solaris 2 OS can burden the overall system performance. Therefore, most implementations of this model restrict the number of threads supported by this system 11 12 March 08 March 08

  4. Quiz L4.2 Advantages and inconveniences of ULT I nconveniences Advantages � � � Most system calls are � Thread switching does blocking and the kernel not involve the kernel: blocks processes. So all no mode switching threads within the process � Scheduling can be will be blocked application specific: � The kernel can only assign choose the best processes to processors. algorithm. Two threads within the � ULTs can run on any OS. same process cannot run Only needs a thread simultaneously on two library processors March 08 13 March 08 14 Thread Libraries Advantages and inconveniences of KLT Advantages I nconveniences � � A thread library provides the programmer with an API for � � the kernel can � Thread switching within creating and destroying threads � simultaneously schedule the same process involves passing messages and data between threads � many threads of the same the kernel. We have 2 scheduling thread execution � process on many processors mode switches per thread saving and restoring thread contexts � switch: user to kernel and � blocking is done on a Implementing a thread library � kernel to user. thread level User-level library (with no kernel support) – the code and data � � This results in a � kernel routines can be structures for the library exist in the user space; invoking a function significant slow down multithreaded results in local function call in the user space Kernel-level library – the code and data structures for the library exist � in the kernel space; invoking a function results in a system call to the kernel Thread libraries: Pthreads, Win32, Java � 15 16 March 08 March 08

  5. Pthreads Pthreads (Cont.) Posix Threads (pthreads) is a standardized programming interface � Multithreaded C program using Pthreads API � for UNIX systems, int sum; the interface is specified by the IEEE 1003.1c standard (1995) � # include < pthread.h> void main(int argc, char * argv[]) { this standard specifies behavior of the thread library � pthread_t tid; pthread_attr_t attr; implementations which adhere to this standard are referred to as POSIX � … threads, or Pthreads pthread_attr_init(&attr); /* get default attributes � Pthreads is: pthread_create(&tid, &attr, runner, argv[1]); /* create thread* / Widely used threads package pthread_join(tid, NULL); /* wait for thread to finish* / � printf( “ sum = %d ” , sum) � defined as a set of C language programming types and procedure calls, } implemented with a pthread.h header Function to Conforms to the Posix standard � void * runner(void * param) { run in the Sample Calls: pthread_create(), pthread_exit(), pthread_join(), etc. N � ∑ int i, upper = atoi(param), sum = 0; thread created = sum i Typical used in C/C+ + applications if (upper > 0) � for(i= 1;i< = upper;i+ + ) = Examples of OS implementing Pthreads: Solaris 2, Linux, Mac OS X, � i 0 sum+ = i; True64 Unix and shareware implementation for Windows pthread_exit(0); } March 08 17 March 08 18 Win32 Threads Java Threads Java language and its API provide a rich set of features for creating � and managing threads � Similar to pthreads in several ways As JVM is running on the top of host OS, Java thread API is typically � � Kernel-level library available on Windows systems implemented using a thread library available on the host system # include < windows.h> Windows: Java Threads API uses Win32 API � …… .. Unix and Linux: Java Threads API uses Pthread � void main(int argc, char * argv){ Thread is a fundamental model of program execution in Java � ……… All Java programs comprise of at least a single thread � ThreadHandle = CreateThread( …… ., Summation, …… .) Java threads are managed by the JVM � if(ThreadHandle ! = NULL){ Two approaches to create threads in Java � WaitForSingleObject(ThreadHandle, INFINITE); Create a new class that extends Thread class and override the run() � CloseHandle(ThreadHandle); method printf( “ sum = %d ” , Sum); Define a class that implements Runnable interface (and define the run() � } method) …… .. � A thread is created by creating an instance of the Thread class and passing a Runnable object; then call the start() method to actually create the thread 19 20 March 08 March 08

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend