SlideShare a Scribd company logo
Silberschatz, Galvin and Gagne ©20024.1
Chapter 4: Processes
Process Concept
Process Scheduling
Operations on Processes
Cooperating Processes
Interprocess Communication
Communication in Client-Server Systems
Silberschatz, Galvin and Gagne ©20024.2
Process Concept
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
Silberschatz, Galvin and Gagne ©20024.3
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 process.
terminated: The process has finished execution.
Silberschatz, Galvin and Gagne ©20024.4
Diagram of Process State
Silberschatz, Galvin and Gagne ©20024.5
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
Silberschatz, Galvin and Gagne ©20024.6
Process Control Block (PCB)
Silberschatz, Galvin and Gagne ©20024.7
CPU Switch From Process to
Process
Silberschatz, Galvin and Gagne ©20024.8
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.
Process migration between the various queues.
Silberschatz, Galvin and Gagne ©20024.9
Ready Queue And Various I/O Device
Queues
Silberschatz, Galvin and Gagne ©20024.10
Representation of Process
Scheduling
Silberschatz, Galvin and Gagne ©20024.11
Schedulers
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.
Silberschatz, Galvin and Gagne ©20024.12
Addition of Medium Term
Scheduling
Silberschatz, Galvin and Gagne ©20024.13
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
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.
Silberschatz, Galvin and Gagne ©20024.14
Context Switch
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.
Context-switch time is overhead; the system does no
useful work while switching.
Time dependent on hardware support.
Silberschatz, Galvin and Gagne ©20024.15
Process Creation
Parent process create children processes, which, in turn
create other processes, forming a tree of processes.
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.
Silberschatz, Galvin and Gagne ©20024.16
Process Creation (Cont.)
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.
Silberschatz, Galvin and Gagne ©20024.17
Processes Tree on a UNIX
System
Silberschatz, Galvin and Gagne ©20024.18
Process Termination
Process executes last statement and asks the operating
system to decide 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.
Parent is exiting.
Operating system does not allow child to continue if its
parent terminates.
Cascading termination.
Silberschatz, Galvin and Gagne ©20024.19
Cooperating Processes
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
Silberschatz, Galvin and Gagne ©20024.20
Producer-Consumer Problem
Paradigm for cooperating processes, producer process
produces information that is consumed by a consumer
process.
unbounded-buffer places no practical limit on the size of the
buffer.
bounded-buffer assumes that there is a fixed buffer size.
Silberschatz, Galvin and Gagne ©20024.21
Bounded-Buffer – Shared-Memory Solution
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
Silberschatz, Galvin and Gagne ©20024.22
Bounded-Buffer – Producer
Process
item nextProduced;
while (1) {
while (((in + 1) % BUFFER_SIZE) == out)
; /* do nothing */
buffer[in] = nextProduced;
in = (in + 1) % BUFFER_SIZE;
}
Silberschatz, Galvin and Gagne ©20024.23
Bounded-Buffer – Consumer
Process
item nextConsumed;
while (1) {
while (in == out)
; /* do nothing */
nextConsumed = buffer[out];
out = (out + 1) % BUFFER_SIZE;
}
Silberschatz, Galvin and Gagne ©20024.24
Interprocess Communication (IPC)
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)
Silberschatz, Galvin and Gagne ©20024.25
Implementation Questions
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?
Silberschatz, Galvin and Gagne ©20024.26
Direct Communication
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.
Silberschatz, Galvin and Gagne ©20024.27
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.
Silberschatz, Galvin and Gagne ©20024.28
Indirect Communication
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
Silberschatz, Galvin and Gagne ©20024.29
Indirect Communication
Mailbox sharing
P1, P2, and P3 share mailbox A.
P1, sends; P2 and P3 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.
Silberschatz, Galvin and Gagne ©20024.30
Synchronization
Message passing may be either blocking or non-blocking.
Blocking is considered synchronous
Non-blocking is considered asynchronous
send and receive primitives may be either blocking or
non-blocking.
Silberschatz, Galvin and Gagne ©20024.31
Buffering
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.
Silberschatz, Galvin and Gagne ©20024.32
Client-Server Communication
Sockets
Remote Procedure Calls
Remote Method Invocation (Java)
Silberschatz, Galvin and Gagne ©20024.33
Sockets
A socket is defined as an endpoint for communication.
Concatenation 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.
Silberschatz, Galvin and Gagne ©20024.34
Socket Communication
Silberschatz, Galvin and Gagne ©20024.35
Remote Procedure Calls
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.
Silberschatz, Galvin and Gagne ©20024.36
Execution of RPC
Silberschatz, Galvin and Gagne ©20024.37
Remote Method Invocation
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.
Silberschatz, Galvin and Gagne ©20024.38
Marshalling Parameters

More Related Content

What's hot (20)

PPT
Chapter 1: Introduction to Operating System
Shafaan Khaliq Bhatti
 
PDF
CPU scheduling ppt file
Dwight Sabio
 
PDF
Operating Systems Part II-Process Scheduling, Synchronisation & Deadlock
Ajit Nayak
 
PPTX
Chapter 14 Computer Architecture
GiulianoRanauro
 
PPTX
cs8493 - operating systems unit 5
SIMONTHOMAS S
 
PDF
Operating System - Unit I - Operating System Structures
cscarcas
 
PDF
6 cpu scheduling
BaliThorat1
 
PPT
Galvin-operating System(Ch1)
dsuyal1
 
PDF
5 process synchronization
BaliThorat1
 
PPTX
Chapter 9 Operating Systems silberschatz
GiulianoRanauro
 
PDF
Ch2
nubinny
 
PDF
4 threads
BaliThorat1
 
PPTX
cs8493 - operating systems unit 2
SIMONTHOMAS S
 
PDF
Process scheduling (CPU Scheduling)
Mukesh Chinta
 
PDF
Unit II - 1 - Operating System Process
cscarcas
 
PDF
Ch1
nubinny
 
PPT
Real-Time Scheduling
sathish sak
 
PPTX
Ch1-Operating System Concept
Muhammad Bilal Tariq
 
PDF
Memory management in_windows_os
VidhyavaniA
 
Chapter 1: Introduction to Operating System
Shafaan Khaliq Bhatti
 
CPU scheduling ppt file
Dwight Sabio
 
Operating Systems Part II-Process Scheduling, Synchronisation & Deadlock
Ajit Nayak
 
Chapter 14 Computer Architecture
GiulianoRanauro
 
cs8493 - operating systems unit 5
SIMONTHOMAS S
 
Operating System - Unit I - Operating System Structures
cscarcas
 
6 cpu scheduling
BaliThorat1
 
Galvin-operating System(Ch1)
dsuyal1
 
5 process synchronization
BaliThorat1
 
Chapter 9 Operating Systems silberschatz
GiulianoRanauro
 
Ch2
nubinny
 
4 threads
BaliThorat1
 
cs8493 - operating systems unit 2
SIMONTHOMAS S
 
Process scheduling (CPU Scheduling)
Mukesh Chinta
 
Unit II - 1 - Operating System Process
cscarcas
 
Ch1
nubinny
 
Real-Time Scheduling
sathish sak
 
Ch1-Operating System Concept
Muhammad Bilal Tariq
 
Memory management in_windows_os
VidhyavaniA
 

Viewers also liked (20)

PPTX
IPC
Mohit Joshi
 
PDF
Chapter9
kathiroli
 
PPTX
3 processes
ari9_dutta
 
PPTX
communication Mechanism in Client Server Model
Junaid Lodhi
 
PPT
Interprocess Communication
Deepak H L
 
PPT
Components of client server application
Ashwin Ananthapadmanabhan
 
PPT
Ipc ppt
Ruchi Sharma
 
PPT
Interprocess communication
Sushil Singh
 
PPTX
CLIENT SERVER IN OS.ppt
suman yadav
 
PPT
Chapter 4 a interprocess communication
AbDul ThaYyal
 
PPT
Inter process communication
Mohd Tousif
 
PPT
Op Sy 03 Ch 23
Google
 
PDF
3 process management
Dr. Loganathan R
 
PDF
Kcd226 Sistem Operasi Lecture04
Cahyo Darujati
 
PPS
Operating Systems and Memory Management
guest1415ae65
 
PPTX
Client server architecture
Whitireia New Zealand
 
PDF
Inter Process Communication
Anil Kumar Pugalia
 
PPT
Operating system.ppt (1)
Vaibhav Bajaj
 
PPTX
Client vs server operating system
Muhammad Zubair
 
Chapter9
kathiroli
 
3 processes
ari9_dutta
 
communication Mechanism in Client Server Model
Junaid Lodhi
 
Interprocess Communication
Deepak H L
 
Components of client server application
Ashwin Ananthapadmanabhan
 
Ipc ppt
Ruchi Sharma
 
Interprocess communication
Sushil Singh
 
CLIENT SERVER IN OS.ppt
suman yadav
 
Chapter 4 a interprocess communication
AbDul ThaYyal
 
Inter process communication
Mohd Tousif
 
Op Sy 03 Ch 23
Google
 
3 process management
Dr. Loganathan R
 
Kcd226 Sistem Operasi Lecture04
Cahyo Darujati
 
Operating Systems and Memory Management
guest1415ae65
 
Client server architecture
Whitireia New Zealand
 
Inter Process Communication
Anil Kumar Pugalia
 
Operating system.ppt (1)
Vaibhav Bajaj
 
Client vs server operating system
Muhammad Zubair
 
Ad

Similar to Ch4: Processes (OS) (20)

PPT
Galvin-operating System(Ch4)
dsuyal1
 
PPT
3.Process Management
Senthil Kanth
 
PDF
Ch3 processes
Ankit Dubey
 
PPTX
Week03-Ch3-Process Concept.pptx.gfhgvjhg
alianwar88
 
PDF
chapter three operating systems cpu scheduling
SeifMohamed42
 
PPTX
OS_Process_Management_Chap4.pptx
DrAmarNathDhebla
 
PPTX
Chapter 6 Process Synchronizationss.pptx
AdanSaleban
 
PPT
ch3 Process Operation System lecture.ppt
asaryramadhan1
 
PPT
Ch4 OS
C.U
 
PPT
Process
Sachin MK
 
PPT
OSCh4
Joe Christensen
 
PPTX
Unix Process management
Wave Digitech
 
PPT
OS UNIT2.ppt
DHANABALSUBRAMANIAN
 
PPT
Lecture#5
Adil Alpkoçak
 
PPTX
Process Synchronization Process Synchronization.pptx
Settuji1
 
PDF
OperatingSystemChp3
Dwight Sabio
 
PDF
Ch3OperSys
Dwight Sabio
 
PPT
Template 1 ch3
Von Adam Martinez
 
Galvin-operating System(Ch4)
dsuyal1
 
3.Process Management
Senthil Kanth
 
Ch3 processes
Ankit Dubey
 
Week03-Ch3-Process Concept.pptx.gfhgvjhg
alianwar88
 
chapter three operating systems cpu scheduling
SeifMohamed42
 
OS_Process_Management_Chap4.pptx
DrAmarNathDhebla
 
Chapter 6 Process Synchronizationss.pptx
AdanSaleban
 
ch3 Process Operation System lecture.ppt
asaryramadhan1
 
Ch4 OS
C.U
 
Process
Sachin MK
 
Unix Process management
Wave Digitech
 
OS UNIT2.ppt
DHANABALSUBRAMANIAN
 
Lecture#5
Adil Alpkoçak
 
Process Synchronization Process Synchronization.pptx
Settuji1
 
OperatingSystemChp3
Dwight Sabio
 
Ch3OperSys
Dwight Sabio
 
Template 1 ch3
Von Adam Martinez
 
Ad

More from Ahmar Hashmi (20)

PPT
32 Security in_Internet_IP_SEC_SSL/TLS_PGN_VPN_and_Firewalls
Ahmar Hashmi
 
PPT
31 Network Security
Ahmar Hashmi
 
PPT
30 Cryptography
Ahmar Hashmi
 
PPT
29 Multimedia
Ahmar Hashmi
 
PPT
28 Network Management_SNMP
Ahmar Hashmi
 
PPT
27 WWW and_HTTP
Ahmar Hashmi
 
PPT
26 Remote Logging_Electronic_Mail_and_File_Transfer
Ahmar Hashmi
 
PPT
25 DNS
Ahmar Hashmi
 
PPT
24 Congestion Control_and_Quality_of_Service
Ahmar Hashmi
 
PPT
23 Process to_Process_Delivery_UDP_TCP_and_SCTP
Ahmar Hashmi
 
PPT
22 Network Layer_Delivery_forwarding_and_Routing
Ahmar Hashmi
 
PPT
21 Network Layer_Address_Mapping_Error_Reporting_and_Multicasting
Ahmar Hashmi
 
PPT
20 Network Layer_Internet_Protocol
Ahmar Hashmi
 
PPT
19 Network Layer_Logical_Addressing
Ahmar Hashmi
 
PPT
18 Virtual Circuit_Networks_Frame_Relay_and_ATM
Ahmar Hashmi
 
PPT
17 SONET/SDH
Ahmar Hashmi
 
PPT
16 Wireless WANs_Cellular_Telephone_and_Satellite_Networks
Ahmar Hashmi
 
PPT
15 Connecting LANs_Backbone_Networks_and_Virtual_LAN
Ahmar Hashmi
 
PPT
14 Wireless LAN
Ahmar Hashmi
 
PPT
13 Wired Lans_Ethernet
Ahmar Hashmi
 
32 Security in_Internet_IP_SEC_SSL/TLS_PGN_VPN_and_Firewalls
Ahmar Hashmi
 
31 Network Security
Ahmar Hashmi
 
30 Cryptography
Ahmar Hashmi
 
29 Multimedia
Ahmar Hashmi
 
28 Network Management_SNMP
Ahmar Hashmi
 
27 WWW and_HTTP
Ahmar Hashmi
 
26 Remote Logging_Electronic_Mail_and_File_Transfer
Ahmar Hashmi
 
25 DNS
Ahmar Hashmi
 
24 Congestion Control_and_Quality_of_Service
Ahmar Hashmi
 
23 Process to_Process_Delivery_UDP_TCP_and_SCTP
Ahmar Hashmi
 
22 Network Layer_Delivery_forwarding_and_Routing
Ahmar Hashmi
 
21 Network Layer_Address_Mapping_Error_Reporting_and_Multicasting
Ahmar Hashmi
 
20 Network Layer_Internet_Protocol
Ahmar Hashmi
 
19 Network Layer_Logical_Addressing
Ahmar Hashmi
 
18 Virtual Circuit_Networks_Frame_Relay_and_ATM
Ahmar Hashmi
 
17 SONET/SDH
Ahmar Hashmi
 
16 Wireless WANs_Cellular_Telephone_and_Satellite_Networks
Ahmar Hashmi
 
15 Connecting LANs_Backbone_Networks_and_Virtual_LAN
Ahmar Hashmi
 
14 Wireless LAN
Ahmar Hashmi
 
13 Wired Lans_Ethernet
Ahmar Hashmi
 

Recently uploaded (20)

PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PDF
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PDF
The-Ever-Evolving-World-of-Science (1).pdf/7TH CLASS CURIOSITY /1ST CHAPTER/B...
Sandeep Swamy
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PPTX
How to Set Maximum Difference Odoo 18 POS
Celine George
 
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PDF
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PDF
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
PDF
Isharyanti-2025-Cross Language Communication in Indonesian Language
Neny Isharyanti
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
The-Ever-Evolving-World-of-Science (1).pdf/7TH CLASS CURIOSITY /1ST CHAPTER/B...
Sandeep Swamy
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
How to Set Maximum Difference Odoo 18 POS
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
community health nursing question paper 2.pdf
Prince kumar
 
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
Isharyanti-2025-Cross Language Communication in Indonesian Language
Neny Isharyanti
 

Ch4: Processes (OS)

  • 1. Silberschatz, Galvin and Gagne ©20024.1 Chapter 4: Processes Process Concept Process Scheduling Operations on Processes Cooperating Processes Interprocess Communication Communication in Client-Server Systems
  • 2. Silberschatz, Galvin and Gagne ©20024.2 Process Concept 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
  • 3. Silberschatz, Galvin and Gagne ©20024.3 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 process. terminated: The process has finished execution.
  • 4. Silberschatz, Galvin and Gagne ©20024.4 Diagram of Process State
  • 5. Silberschatz, Galvin and Gagne ©20024.5 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
  • 6. Silberschatz, Galvin and Gagne ©20024.6 Process Control Block (PCB)
  • 7. Silberschatz, Galvin and Gagne ©20024.7 CPU Switch From Process to Process
  • 8. Silberschatz, Galvin and Gagne ©20024.8 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. Process migration between the various queues.
  • 9. Silberschatz, Galvin and Gagne ©20024.9 Ready Queue And Various I/O Device Queues
  • 10. Silberschatz, Galvin and Gagne ©20024.10 Representation of Process Scheduling
  • 11. Silberschatz, Galvin and Gagne ©20024.11 Schedulers 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.
  • 12. Silberschatz, Galvin and Gagne ©20024.12 Addition of Medium Term Scheduling
  • 13. Silberschatz, Galvin and Gagne ©20024.13 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 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.
  • 14. Silberschatz, Galvin and Gagne ©20024.14 Context Switch 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. Context-switch time is overhead; the system does no useful work while switching. Time dependent on hardware support.
  • 15. Silberschatz, Galvin and Gagne ©20024.15 Process Creation Parent process create children processes, which, in turn create other processes, forming a tree of processes. 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.
  • 16. Silberschatz, Galvin and Gagne ©20024.16 Process Creation (Cont.) 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.
  • 17. Silberschatz, Galvin and Gagne ©20024.17 Processes Tree on a UNIX System
  • 18. Silberschatz, Galvin and Gagne ©20024.18 Process Termination Process executes last statement and asks the operating system to decide 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. Parent is exiting. Operating system does not allow child to continue if its parent terminates. Cascading termination.
  • 19. Silberschatz, Galvin and Gagne ©20024.19 Cooperating Processes 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
  • 20. Silberschatz, Galvin and Gagne ©20024.20 Producer-Consumer Problem Paradigm for cooperating processes, producer process produces information that is consumed by a consumer process. unbounded-buffer places no practical limit on the size of the buffer. bounded-buffer assumes that there is a fixed buffer size.
  • 21. Silberschatz, Galvin and Gagne ©20024.21 Bounded-Buffer – Shared-Memory Solution 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
  • 22. Silberschatz, Galvin and Gagne ©20024.22 Bounded-Buffer – Producer Process item nextProduced; while (1) { while (((in + 1) % BUFFER_SIZE) == out) ; /* do nothing */ buffer[in] = nextProduced; in = (in + 1) % BUFFER_SIZE; }
  • 23. Silberschatz, Galvin and Gagne ©20024.23 Bounded-Buffer – Consumer Process item nextConsumed; while (1) { while (in == out) ; /* do nothing */ nextConsumed = buffer[out]; out = (out + 1) % BUFFER_SIZE; }
  • 24. Silberschatz, Galvin and Gagne ©20024.24 Interprocess Communication (IPC) 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)
  • 25. Silberschatz, Galvin and Gagne ©20024.25 Implementation Questions 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?
  • 26. Silberschatz, Galvin and Gagne ©20024.26 Direct Communication 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.
  • 27. Silberschatz, Galvin and Gagne ©20024.27 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.
  • 28. Silberschatz, Galvin and Gagne ©20024.28 Indirect Communication 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
  • 29. Silberschatz, Galvin and Gagne ©20024.29 Indirect Communication Mailbox sharing P1, P2, and P3 share mailbox A. P1, sends; P2 and P3 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.
  • 30. Silberschatz, Galvin and Gagne ©20024.30 Synchronization Message passing may be either blocking or non-blocking. Blocking is considered synchronous Non-blocking is considered asynchronous send and receive primitives may be either blocking or non-blocking.
  • 31. Silberschatz, Galvin and Gagne ©20024.31 Buffering 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.
  • 32. Silberschatz, Galvin and Gagne ©20024.32 Client-Server Communication Sockets Remote Procedure Calls Remote Method Invocation (Java)
  • 33. Silberschatz, Galvin and Gagne ©20024.33 Sockets A socket is defined as an endpoint for communication. Concatenation 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.
  • 34. Silberschatz, Galvin and Gagne ©20024.34 Socket Communication
  • 35. Silberschatz, Galvin and Gagne ©20024.35 Remote Procedure Calls 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.
  • 36. Silberschatz, Galvin and Gagne ©20024.36 Execution of RPC
  • 37. Silberschatz, Galvin and Gagne ©20024.37 Remote Method Invocation 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.
  • 38. Silberschatz, Galvin and Gagne ©20024.38 Marshalling Parameters