Module 5 Threads Benefits User and Kernel Threads

Module 5: Threads • • • Benefits User and Kernel Threads Multithreading Models Solaris 2 Threads Java Threads Applied Operating System Concepts 5. 1 Silberschatz, Galvin, and Gagne 1999

Benefits • Responsiveness • Resource Sharing • Economy • Utilization of MP Architectures Applied Operating System Concepts 5. 2 Silberschatz, Galvin, and Gagne 1999

Single and Multithreaded Processes Applied Operating System Concepts 5. 3 Silberschatz, Galvin, and Gagne 1999

User Threads • Thread Management Done by User-Level Threads Library • Examples - POSIX Pthreads - Mach C-threads - Solaris threads Applied Operating System Concepts 5. 4 Silberschatz, Galvin, and Gagne 1999

Kernel Threads • Supported by the Kernel • Examples - Windows 95/98/NT - Solaris - Digital UNIX Applied Operating System Concepts 5. 5 Silberschatz, Galvin, and Gagne 1999

Multithreading Models • Many-to-One • One-to-One • Many-to-Many Applied Operating System Concepts 5. 6 Silberschatz, Galvin, and Gagne 1999

Many-to-One • Many User-Level Threads Mapped to Single Kernel Thread. • Used on Systems That Do Not Support Kernel Threads. Applied Operating System Concepts 5. 7 Silberschatz, Galvin, and Gagne 1999

Many-to-one Model Applied Operating System Concepts 5. 8 Silberschatz, Galvin, and Gagne 1999

One-to-One • Each User-Level Thread Maps to Kernel Thread. • Examples - Windows 95/98/NT - OS/2 Applied Operating System Concepts 5. 9 Silberschatz, Galvin, and Gagne 1999

One-to-one Model Applied Operating System Concepts 5. 10 Silberschatz, Galvin, and Gagne 1999

Many-to-many Model Applied Operating System Concepts 5. 11 Silberschatz, Galvin, and Gagne 1999

Solaris 2 Threads Applied Operating System Concepts 5. 12 Silberschatz, Galvin, and Gagne 1999

Solaris Process Applied Operating System Concepts 5. 13 Silberschatz, Galvin, and Gagne 1999

Java Threads • Java Threads May be Created by: – Extending Thread class – Implementing the Runnable interface Applied Operating System Concepts 5. 14 Silberschatz, Galvin, and Gagne 1999

Extending the Thread Class class Worker 1 extends Thread { public void run() { System. out. println(“I am a Worker Thread”); } } Applied Operating System Concepts 5. 15 Silberschatz, Galvin, and Gagne 1999
![Creating the Thread public class First { public static void main(String args[]) { Worker Creating the Thread public class First { public static void main(String args[]) { Worker](http://slidetodoc.com/presentation_image/d34eef89ce3077bf6869c4dfafd78d61/image-16.jpg)
Creating the Thread public class First { public static void main(String args[]) { Worker runner = new Worker 1(); runner. start(); System. out. println(“I am the main thread”); } } Applied Operating System Concepts 5. 16 Silberschatz, Galvin, and Gagne 1999

The Runnable Interface public interface Runnable { public abstract void run(); } Applied Operating System Concepts 5. 17 Silberschatz, Galvin, and Gagne 1999

Implementing the Runnable Interface class Worker 2 implements Runnable { public void run() { System. out. println(“I am a Worker Thread”); } } Applied Operating System Concepts 5. 18 Silberschatz, Galvin, and Gagne 1999
![Creating the Thread public class Second { public static void main(String args[]) { Runnable Creating the Thread public class Second { public static void main(String args[]) { Runnable](http://slidetodoc.com/presentation_image/d34eef89ce3077bf6869c4dfafd78d61/image-19.jpg)
Creating the Thread public class Second { public static void main(String args[]) { Runnable runner = new Worker 2(); Thread thrd = new Thread(runner); thrd. start(); System. out. println(“I am the main thread”); } } Applied Operating System Concepts 5. 19 Silberschatz, Galvin, and Gagne 1999

Java Thread Management • suspend() – suspends execution of the currently running thread. • sleep() – puts the currently running thread to sleep for a specified amount of time. • • resume() – resumes execution of a suspended thread. stop() – stops execution of a thread. Applied Operating System Concepts 5. 20 Silberschatz, Galvin, and Gagne 1999

Java Thread States Applied Operating System Concepts 5. 21 Silberschatz, Galvin, and Gagne 1999

Producer Consumer Problem public class Server { public Server() { Message. Queue mail. Box = new Message. Queue(); Producer producer. Thread = new Producer(mail. Box); Consumer consumer. Thread = new Consumer(mail. Box); producer. Thread. start(); consumer. Thread. start(); } public static void main(String args[]) { Server server = new Server(); } } Applied Operating System Concepts 5. 22 Silberschatz, Galvin, and Gagne 1999

Producer Thread class Producer extends Thread { public Producer(Message. Queue m) { mbox = m; } public void run() { while (true) { // produce an item & enter it into the buffer Date message = new Date(); mbox. send(message); } } private Message. Queue mbox; } Applied Operating System Concepts 5. 23 Silberschatz, Galvin, and Gagne 1999

Consumer Thread class Consumer extends Thread { public Consumer(Message. Queue m) { mbox = m; } public void run() { while (true) { Date message = (Date)mbox. receive(); if (message != null) // consume the message } } private Message. Queue mbox; } Applied Operating System Concepts 5. 24 Silberschatz, Galvin, and Gagne 1999
- Slides: 24