44
Chapter 3: Processes Chapter 3: Processes

ch3[1]

Embed Size (px)

DESCRIPTION

OS

Citation preview

  • Chapter 3: Processes

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Chapter 3: ProcessesProcess ConceptProcess SchedulingOperations on ProcessesCooperating ProcessesInterprocess CommunicationCommunication in Client-Server Systems

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process ConceptAn operating system executes a variety of programs:Batch system jobsTime-shared systems user programs or tasksTextbook uses the terms job and process almost interchangeablyProcess a program in execution; process execution must progress in sequential fashionA process includes:program counter stackdata section

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process in Memory

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process StateAs a process executes, it changes statenew: The process is being createdrunning: Instructions are being executedwaiting: The process is waiting for some event to occurready: The process is waiting to be assigned to a processorterminated: The process has finished execution

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Diagram of Process State

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process Control Block (PCB)Information associated with each processProcess stateProgram counterCPU registersCPU scheduling informationMemory-management informationAccounting informationI/O status information

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process Control Block (PCB)

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    CPU Switch From Process to Process

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process Scheduling QueuesJob queue set of all processes in the systemReady queue set of all processes residing in main memory, ready and waiting to executeDevice queues set of processes waiting for an I/O deviceProcesses migrate among the various queues

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Ready Queue And Various I/O Device Queues

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Representation of Process Scheduling

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    SchedulersLong-term scheduler (or job scheduler) selects which processes should be brought into the ready queueShort-term scheduler (or CPU scheduler) selects which process should be executed next and allocates CPU

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Addition of Medium Term Scheduling

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Schedulers (Cont.)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 multiprogrammingProcesses can be described as either:I/O-bound process spends more time doing I/O than computations, many short CPU burstsCPU-bound process spends more time doing computations; few very long CPU bursts

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Context SwitchWhen CPU switches to another process, the system must save the state of the old process and load the saved state for the new processContext-switch time is overhead; the system does no useful work while switchingTime dependent on hardware support

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process CreationParent process create children processes, which, in turn create other processes, forming a tree of processesResource sharingParent and children share all resourcesChildren share subset of parents resourcesParent and child share no resourcesExecutionParent and children execute concurrentlyParent waits until children terminate

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process Creation (Cont.)Address spaceChild duplicate of parentChild has a program loaded into itUNIX examplesfork system call creates new processexec system call used after a fork to replace the process memory space with a new program

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process Creation

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    C Program Forking Separate Processint main(){pid_t pid;/* fork another process */pid = fork();if (pid < 0) { /* error occurred */fprintf(stderr, "Fork Failed");exit(-1);}else if (pid == 0) { /* child process */execlp("/bin/ls", "ls", NULL);}else { /* parent process *//* parent will wait for the child to complete */wait (NULL);printf ("Child Complete");exit(0);}}

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    A tree of processes on a typical Solaris

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Process TerminationProcess 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 systemParent may terminate execution of children processes (abort)Child has exceeded allocated resourcesTask assigned to child is no longer requiredIf parent is exitingSome operating system do not allow child to continue if its parent terminatesAll children terminated - cascading termination

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Cooperating ProcessesIndependent process cannot affect or be affected by the execution of another processCooperating process can affect or be affected by the execution of another processAdvantages of process cooperationInformation sharing Computation speed-upModularityConvenience

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Producer-Consumer ProblemParadigm for cooperating processes, producer process produces information that is consumed by a consumer processunbounded-buffer places no practical limit on the size of the bufferbounded-buffer assumes that there is a fixed buffer size

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Bounded-Buffer Shared-Memory SolutionShared data#define BUFFER_SIZE 10typedef struct {. . .} item;

    item buffer[BUFFER_SIZE];int in = 0;int out = 0;Solution is correct, but can only use BUFFER_SIZE-1 elements

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Bounded-Buffer Insert() Method

    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; }

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Bounded Buffer Remove() Methodwhile (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; }

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Interprocess Communication (IPC)Mechanism for processes to communicate and to synchronize their actionsMessage system processes communicate with each other without resorting to shared variablesIPC 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 themexchange messages via send/receiveImplementation of communication linkphysical (e.g., shared memory, hardware bus)logical (e.g., logical properties)

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Implementation QuestionsHow 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?

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Communications Models

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Direct CommunicationProcesses must name each other explicitly:send (P, message) send a message to process Preceive(Q, message) receive a message from process QProperties of communication linkLinks are established automaticallyA link is associated with exactly one pair of communicating processesBetween each pair there exists exactly one linkThe link may be unidirectional, but is usually bi-directional

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Indirect CommunicationMessages are directed and received from mailboxes (also referred to as ports)Each mailbox has a unique idProcesses can communicate only if they share a mailboxProperties of communication linkLink established only if processes share a common mailboxA link may be associated with many processesEach pair of processes may share several communication linksLink may be unidirectional or bi-directional

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Indirect CommunicationOperationscreate a new mailboxsend and receive messages through mailboxdestroy a mailboxPrimitives are defined as:send(A, message) send a message to mailbox Areceive(A, message) receive a message from mailbox A

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Indirect CommunicationMailbox sharingP1, P2, and P3 share mailbox AP1, sends; P2 and P3 receiveWho gets the message?SolutionsAllow a link to be associated with at most two processesAllow only one process at a time to execute a receive operationAllow the system to select arbitrarily the receiver. Sender is notified who the receiver was.

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    SynchronizationMessage passing may be either blocking or non-blockingBlocking is considered synchronousBlocking send has the sender block until the message is receivedBlocking receive has the receiver block until a message is availableNon-blocking is considered asynchronousNon-blocking send has the sender send the message and continueNon-blocking receive has the receiver receive a valid message or null

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    BufferingQueue of messages attached to the link; implemented in one of three ways1.Zero capacity 0 messages Sender must wait for receiver (rendezvous)2.Bounded capacity finite length of n messages Sender must wait if link full3.Unbounded capacity infinite length Sender never waits

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Client-Server CommunicationSocketsRemote Procedure CallsRemote Method Invocation (Java)

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    SocketsA socket is defined as an endpoint for communicationConcatenation of IP address and portThe socket 161.25.19.8:1625 refers to port 1625 on host 161.25.19.8Communication consists between a pair of sockets

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Socket Communication

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Remote Procedure CallsRemote 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.

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Execution of RPC

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Remote Method InvocationRemote 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.

    3.*Silberschatz, Galvin and Gagne 2005Operating System Concepts - 7th Edition, Feb 7, 2006

    Marshalling Parameters

  • End of Chapter 3