Chapter 5: Processes & Process Concept. Objectives. Process Concept Process Scheduling Operations on Processes. Communication in Client-Server Systems

Similar documents
Chapter 3: Processes. Chapter 3: Processes. Process in Memory. Process Concept. Process State. Diagram of Process State

Process Concept. Chapter 4: Processes. Diagram of Process State. Process State. Process Control Block (PCB) Process Control Block (PCB)

Chapter 4: Processes

Chapter 4: Processes. Process Concept

Chapter 3: Processes. Operating System Concepts 8 th Edition,

Diagram of Process State Process Control Block (PCB)

Lecture 2 Process Management

Chapter 4: Processes. Process Concept

Chapter 4: Processes

Processes. Electrical and Computer Engineering Stephen Kim ECE/IUPUI RTOS & Apps 1

Part Two - Process Management. Chapter 3: Processes

Chapter 3: Processes. Operating System Concepts Essentials 8 th Edition

Processes. Operating System Concepts with Java. 4.1 Sana a University, Dr aimen

The Big Picture So Far. Chapter 4: Processes

Chapter 3: Processes

Chapter 3: Processes. Operating System Concepts 8th Edition

Chapter 3: Processes. Operating System Concepts 8 th Edition,

Chapter 3: Processes. Operating System Concepts 8 th Edition,

The Big Picture So Far. Chapter 4: Processes

Processes and More. CSCI 315 Operating Systems Design Department of Computer Science

Chapter 3: Processes. Operating System Concepts Essentials 2 nd Edition

OPERATING SYSTEMS. UNIT II Sections A, B & D. An operating system executes a variety of programs:

Chapter 3: Process-Concept. Operating System Concepts 8 th Edition,

Chapter 3: Process Concept

Part V. Process Management. Sadeghi, Cubaleska RUB Course Operating System Security Memory Management and Protection

Chapter 3: Processes. Operating System Concepts 9 th Edition

Module 4: Processes. Process Concept Process Scheduling Operation on Processes Cooperating Processes Interprocess Communication

Module 4: Processes. Process Concept Process Scheduling Operation on Processes Cooperating Processes Interprocess Communication

COP 4610: Introduction to Operating Systems (Spring 2014) Chapter 3: Process. Zhi Wang Florida State University

Chapter 3: Processes

Processes and Threads

Chapter 4: Processes. Process Concept. Process State

Chapter 3: Process Concept

Chapter 4: Processes

CHAPTER 3 - PROCESS CONCEPT

Chapter 3: Processes. Operating System Concepts 9 th Edition

Chapter 3: Processes. Operating System Concepts 8th Edition,

Chapter 3: Process Concept

COP 4610: Introduction to Operating Systems (Spring 2016) Chapter 3: Process. Zhi Wang Florida State University

Chapter 3: Process Concept

Chapter 3: Process Concept

Chapter 3 Processes. Process Concept. Process Concept. Process Concept (Cont.) Process Concept (Cont.) Process Concept (Cont.)

Chapter 3: Processes. Operating System Concepts 8th Edition, modified by Stewart Weiss

Process Concept Process Scheduling Operations On Process Inter-Process Communication Communication in Client-Server Systems

Chapter 4: Threads. Chapter 4: Threads

Processes. CSE 2431: Introduction to Operating Systems Reading: Chap. 3, [OSC]

Process. Operating Systems (Fall/Winter 2018) Yajin Zhou ( Zhejiang University

Chapter 4: Multithreaded Programming. Operating System Concepts 8 th Edition,

Process Concept Process in Memory Process State new running waiting ready terminated Diagram of Process State

Chapter 3: Processes

Process a program in execution; process execution must progress in sequential fashion. Operating Systems

Process. Program Vs. process. During execution, the process may be in one of the following states

ICS Principles of Operating Systems

CS420: Operating Systems. Interprocess Communication

CHAPTER 2: PROCESS MANAGEMENT

Roadmap. Tevfik Ko!ar. CSC Operating Systems Fall Lecture - III Processes. Louisiana State University. Processes. September 1 st, 2009

Process Concept. Minsoo Ryu. Real-Time Computing and Communications Lab. Hanyang University.

2. PROCESS. Operating System Concepts with Java 8th Edition Silberschatz, Galvin and Gagn

CS307 Operating Systems Processes

Processes. Process Concept. The Process. The Process (Cont.) Process Control Block (PCB) Process State

What Is A Process? Process States. Process Concept. Process Control Block (PCB) Process State Transition Diagram 9/6/2013. Process Fundamentals

! The Process Control Block (PCB) " is included in the context,

CS370 Operating Systems

Outline. Interprocess Communication. Interprocess Communication. Communication Models: Message Passing and shared Memory.

Chapter 4: Multithreaded Programming

Chapter 4: Threads. Overview Multithreading Models Threading Issues Pthreads Windows XP Threads Linux Threads Java Threads. Operating System Concepts

Chapter 4: Threads. Chapter 4: Threads

CS307: Operating Systems

CSCE 313 Introduction to Computer Systems. Instructor: Dezhen Song

Notice: This set of slides is based on the notes by Professor Perrone of Bucknell and the textbook authors Silberschatz, Galvin, and Gagne

CSCE 313: Intro to Computer Systems

Chapter 4: Threads. Chapter 4: Threads. Overview Multicore Programming Multithreading Models Thread Libraries Implicit Threading Threading Issues

Chapter 4: Multithreaded Programming Dr. Varin Chouvatut. Operating System Concepts 8 th Edition,

OPERATING SYSTEM. Chapter 4: Threads

Roadmap. Tevfik Ko!ar. CSC Operating Systems Spring Lecture - III Processes. Louisiana State University. Virtual Machines Processes

Chapter 3: Processes. Operating System Concepts 9 th Edit9on

Chapter 4: Threads. Operating System Concepts with Java 8 th Edition

Lecture 5: Process Description and Control Multithreading Basics in Interprocess communication Introduction to multiprocessors

Exercise (could be a quiz) Solution. Concurrent Programming. Roadmap. Tevfik Koşar. CSE 421/521 - Operating Systems Fall Lecture - IV Threads

Chapter 4: Multithreaded Programming

Chapter 4: Threads. Operating System Concepts. Silberschatz, Galvin and Gagne

Chapter 4: Threads. Overview Multithreading Models Thread Libraries Threading Issues Operating System Examples Windows XP Threads Linux Threads

Threads. What is a thread? Motivation. Single and Multithreaded Processes. Benefits

I.-C. Lin, Assistant Professor. Textbook: Operating System Concepts 8ed CHAPTER 4: MULTITHREADED PROGRAMMING

Chapter 3: Processes

CSC 539: Operating Systems Structure and Design. Spring 2006

Page 1. Analogy: Problems: Operating Systems Lecture 7. Operating Systems Lecture 7

Course: Operating Systems Instructor: M Umair. M Umair

Processes. Process Concept

Chapter 4: Multi-Threaded Programming

Chapter 4: Threads. Operating System Concepts 9 th Edition

CSE 4/521 Introduction to Operating Systems

Chapter 4: Multithreaded

CS420: Operating Systems

Operating Systems. Figure: Process States. 1 P a g e

CS 450 Operating System Week 4 Lecture Notes

Outlook. Process Concept Process Scheduling Operations on Processes. IPC Examples

Outline. Threads. Single and Multithreaded Processes. Benefits of Threads. Eike Ritter 1. Modified: October 16, 2012

Agenda Process Concept Process Scheduling Operations on Processes Interprocess Communication 3.2

Chapter 4: Threads. Operating System Concepts 9 th Edition

Transcription:

Chapter 5: Processes Chapter 5: Processes & Threads Process Concept Process Scheduling Operations on Processes Interprocess Communication Communication in Client-Server Systems, Silberschatz, Galvin and Gagne 2009 5.2 Silberschatz, Galvin and Gagne 2009 Objectives Process Concept To introduce the notion of a process -- a program in execution, which forms the basis of all computation To describe the various features of processes, including scheduling, creation and termination, and communication To describe communication in client-server systems An operating system executes a variety of programs: Batch system jobs Time-shared systems user programs or tasks Textbook uses the terms job and process almost interchangeably Process a program in execution; process execution must progress in sequential fashion A process includes: program counter stack data section 5.3 Silberschatz, Galvin and Gagne 2009 5.4 Silberschatz, Galvin and Gagne 2009

Process State Diagram of Process State As a process executes, it changes state new: The process is being created running: Instructions are being executed waiting: The process is waiting for some event to occur ready: The process is waiting to be assigned to a processor terminated: The process has finished execution 5.5 Silberschatz, Galvin and Gagne 2009 5.6 Silberschatz, Galvin and Gagne 2009 Process Control Block (PCB) Process Control Block (PCB) Information associated with each process Process state Program counter CPU registers CPU scheduling information Memory-management information Accounting information I/O status information 5.7 Silberschatz, Galvin and Gagne 2009 5.8 Silberschatz, Galvin and Gagne 2009

CPU Switch From Process to Process Process Scheduling Queues Job queue set of all processes in the system Ready queue set of all processes residing in main memory, ready and waiting to execute Device queues set of processes waiting for an I/O device Processes migrate among the various queues 5.9 Silberschatz, Galvin and Gagne 2009 5.10 Silberschatz, Galvin and Gagne 2009 Ready Queue And Various I/O Device Queues Representation of Process Scheduling 5.11 Silberschatz, Galvin and Gagne 2009 5.12 Silberschatz, Galvin and Gagne 2009

Schedulers Addition of Medium Term Scheduling Long-term scheduler (or job scheduler) selects which processes should be brought into the ready queue Short-term scheduler (or CPU scheduler) selects which process should be executed next and allocates CPU 5.13 Silberschatz, Galvin and Gagne 2009 5.14 Silberschatz, Galvin and Gagne 2009 Schedulers (Cont) Context Switch Short-term scheduler is invoked very frequently (milliseconds) (must be fast) Long-term scheduler is invoked very infrequently (seconds, minutes) (may be slow) The long-term scheduler controls the degree of multiprogramming Processes can be described as either: I/O-bound process spends more time doing I/O than computations, many short CPU bursts CPU-bound process spends more time doing computations; few very long CPU bursts When CPU switches to another process, the system must save the state of the old process and load the saved state for the new process via a context switch Context of a process represented in the PCB Context-switch time is overhead; the system does no useful work while switching Time dependent on hardware support 5.15 Silberschatz, Galvin and Gagne 2009 5.16 Silberschatz, Galvin and Gagne 2009

Process Creation Process Creation (Cont) Parent process create children processes, which, in turn create other processes, forming a tree of processes Generally, process identified and managed via a process identifier (pid) Resource sharing Parent and children share all resources Children share subset of parent s resources Parent and child share no resources Execution Parent and children execute concurrently Parent waits until children terminate Address space Child duplicate of parent Child has a program loaded into it UNIX examples fork system call creates new process exec system call used after a fork to replace the process memory space with a new program 5.17 Silberschatz, Galvin and Gagne 2009 5.18 Silberschatz, Galvin and Gagne 2009 Process Creation Process Termination Process executes last statement and asks the operating system to delete it (exit) Output data from child to parent (via wait) Process resources are deallocated by operating system Parent may terminate execution of children processes (abort) Child has exceeded allocated resources Task assigned to child is no longer required If parent is exiting Some operating system do not allow child to continue if its parent terminates All children terminated - cascading termination 5.19 Silberschatz, Galvin and Gagne 2009 5.20 Silberschatz, Galvin and Gagne 2009

Interprocess Communication Communications Models Processes within a system may be independent or cooperating Cooperating process can affect or be affected by other processes, including sharing data Reasons for cooperating processes: Information sharing Computation speedup Modularity Convenience Cooperating processes need interprocess communication (IPC) Two models of IPC Shared memory Message passing 5.21 Silberschatz, Galvin and Gagne 2009 5.22 Silberschatz, Galvin and Gagne 2009 Cooperating Processes Producer-Consumer Problem Independent process cannot affect or be affected by the execution of another process Cooperating process can affect or be affected by the execution of another process Advantages of process cooperation Information sharing Computation speed-up Modularity Convenience Paradigm for cooperating processes, producer process produces information that is consumed by a consumer process unbounded-buffer buffer places no practical limit on the size of the buffer bounded-buffer assumes that there is a fixed buffer size 5.23 Silberschatz, Galvin and Gagne 2009 5.24 Silberschatz, Galvin and Gagne 2009

Bounded-Buffer Shared-Memory Solution Bounded-Buffer Producer Shared data #define BUFFER_SIZE 10 typedef struct {... } item; item buffer[buffer_size]; int in = 0; int out = 0; Solution is correct, but can only use BUFFER_SIZE-1 elements while (true) { /* Produce an item */ while (((in = (in + 1) % BUFFER SIZE count) == out) ; /* do nothing -- no free buffers */ buffer[in] = item; in = (in + 1) % BUFFER SIZE; } 5.25 Silberschatz, Galvin and Gagne 2009 5.26 Silberschatz, Galvin and Gagne 2009 Bounded Buffer Consumer Interprocess Communication Message Passing while (true) { while (in == out) ; // do nothing -- nothing to consume // remove an item from the buffer item = buffer[out]; out = (out + 1) % BUFFER SIZE; return item; } Mechanism for processes to communicate and to synchronize their actions Message system processes communicate with each other without resorting to shared variables IPC facility provides two operations: send(message) message size fixed or variable receive(message) If P and Q wish to communicate, they need to: establish a communication link between them exchange messages via send/receive Implementation of communication link physical (e.g., shared memory, hardware bus) logical (e.g., logical properties) 5.27 Silberschatz, Galvin and Gagne 2009 5.28 Silberschatz, Galvin and Gagne 2009

Implementation Questions Direct Communication How are links established? Can a link be associated with more than two processes? How many links can there be between every pair of communicating processes? What is the capacity of a link? Is the size of a message that the link can accommodate fixed or variable? Is a link unidirectional or bi-directional? Processes must name each other explicitly: send (P, message) ) send a message to process P receive(q, message) receive a message from process Q Properties of communication link Links are established automatically A link is associated with exactly one pair of communicating processes Between each pair there exists exactly one link The link may be unidirectional, but is usually bi-directional 5.29 Silberschatz, Galvin and Gagne 2009 5.30 Silberschatz, Galvin and Gagne 2009 Indirect Communication Indirect Communication Messages are directed and received from mailboxes (also referred to as ports) Each mailbox has a unique id Processes can communicate only if they share a mailbox Properties of communication link Link established only if processes share a common mailbox A link may be associated with many processes Each pair of processes may share several communication links Link may be unidirectional or bi-directional Operations create a new mailbox send and receive messages through mailbox destroy a mailbox Primitives are defined as: send(a, message) send a message to mailbox A receive(a, message) receive a message from mailbox A 5.31 Silberschatz, Galvin and Gagne 2009 5.32 Silberschatz, Galvin and Gagne 2009

Indirect Communication Synchronization Mailbox sharing P 1, P 2, and P 3 share mailbox A P 1, sends; P 2 and P 3 receive Who gets the message? Solutions Allow a link to be associated with at most two processes Allow only one process at a time to execute a receive operation Allow the system to select arbitrarily the receiver. Sender is notified who the receiver was. Message passing may be either blocking or non-blocking Blocking is considered d synchronous Blocking send has the sender block until the message is received Blocking receive has the receiver block until a message is available Non-blocking is considered asynchronous Non-blocking send has the sender send the message and continue Non-blocking receive has the receiver receive a valid message or null 5.33 Silberschatz, Galvin and Gagne 2009 5.34 Silberschatz, Galvin and Gagne 2009 Buffering Communications in Client-Server Systems Queue of messages attached to the link; implemented in one of three ways 1. Zero capacity 0 messages Sender must wait for receiver (rendezvous) 2. Bounded capacity finite length of n messages Sender must wait if link full 3. Unbounded capacity infinite length Sender never waits Sockets Remote Procedure Calls Remote Method Invocation (Java) 5.35 Silberschatz, Galvin and Gagne 2009 5.36 Silberschatz, Galvin and Gagne 2009

Sockets Socket Communication A socket is defined as an endpoint for communication Concatenation ti of IP address and port The socket 161.25.19.8:1625 refers to port 1625 on host 161.25.19.8 Communication consists between a pair of sockets 5.37 Silberschatz, Galvin and Gagne 2009 5.38 Silberschatz, Galvin and Gagne 2009 Remote Procedure Calls Execution of RPC Remote procedure call (RPC) abstracts procedure calls between processes on networked systems Stubs client-side proxy for the actual procedure on the server The client-side stub locates the server and marshalls the parameters The server-side stub receives this message, unpacks the marshalled parameters, and peforms the procedure on the server 5.39 Silberschatz, Galvin and Gagne 2009 5.40 Silberschatz, Galvin and Gagne 2009

Remote Method Invocation Marshalling Parameters Remote Method Invocation (RMI) is a Java mechanism similar to RPCs RMI allows a Java program on one machine to invoke a method on a remote object 5.41 Silberschatz, Galvin and Gagne 2009 5.42 Silberschatz, Galvin and Gagne 2009 Content Overview Multithreading Models Threads Thread Libraries Threading Issues, Silberschatz, Galvin and Gagne 2009 5.44 Silberschatz, Galvin and Gagne 2009

Objectives Single and Multithreaded Processes To introduce the notion of a thread a fundamental unit of CPU utilization that forms the basis of multithreaded computer systems To examine issues related to multithreaded programming 5.45 Silberschatz, Galvin and Gagne 2009 5.46 Silberschatz, Galvin and Gagne 2009 Benefits Multicore Programming Responsiveness Resource Sharing Economy Scalability Multicore systems putting pressure on programmers, challenges include Dividing idi activities iti Balance Data splitting Data dependency Testing and debugging 5.47 Silberschatz, Galvin and Gagne 2009 5.48 Silberschatz, Galvin and Gagne 2009

Multithreaded Server Architecture Concurrent Execution on a Single-core System 5.49 Silberschatz, Galvin and Gagne 2009 5.50 Silberschatz, Galvin and Gagne 2009 Parallel Execution on a Multicore System User Threads Thread management done by user-level threads library Three primary thread libraries: POSIX Pthreads Win32 threads Java threads 5.51 Silberschatz, Galvin and Gagne 2009 5.52 Silberschatz, Galvin and Gagne 2009

Kernel Threads Multithreading Models Supported by the Kernel Examples Windows XP/2000 Solaris Linux Tru64 UNIX Mac OS X Many-to-One One-to-One Many-to-Many 5.53 Silberschatz, Galvin and Gagne 2009 5.54 Silberschatz, Galvin and Gagne 2009 Many-to-One Many-to-One Model Many user-level threads mapped to single kernel thread Examples: Solaris Green Threads GNU Portable Threads 5.55 Silberschatz, Galvin and Gagne 2009 5.56 Silberschatz, Galvin and Gagne 2009

One-to-One One-to-one Model Each user-level thread maps to kernel thread Examples Windows NT/XP/2000 Linux Solaris 9 and later 5.57 Silberschatz, Galvin and Gagne 2009 5.58 Silberschatz, Galvin and Gagne 2009 Many-to-Many Model Many-to-Many Model Allows many user level l threads to be mapped to many kernel threads Allows the operating system to create a sufficient number of kernel threads Solaris prior to version 9 Windows NT/2000 with the ThreadFiber package 5.59 Silberschatz, Galvin and Gagne 2009 5.60 Silberschatz, Galvin and Gagne 2009

Two-level Model Two-level Model Similar to M:M, except that it allows a user thread to be bound to kernel thread Examples IRIX HP-UX Tru64 UNIX Solaris 8 and earlier 5.61 Silberschatz, Galvin and Gagne 2009 5.62 Silberschatz, Galvin and Gagne 2009 Thread Cancellation Terminating a thread before it has finished Two general approaches: Asynchronous cancellation terminates the target thread immediately Deferred cancellation allows the target thread to periodically check if it should be cancelled 5.63 Silberschatz, Galvin and Gagne 2009