Presentation is loading. Please wait.

Presentation is loading. Please wait.

1/23/2008CSCI 315 Operating Systems Design1 Processes Notice: The slides for this lecture have been largely based on those accompanying the textbook Operating.

Similar presentations


Presentation on theme: "1/23/2008CSCI 315 Operating Systems Design1 Processes Notice: The slides for this lecture have been largely based on those accompanying the textbook Operating."— Presentation transcript:

1 1/23/2008CSCI 315 Operating Systems Design1 Processes Notice: The slides for this lecture have been largely based on those accompanying the textbook Operating Systems Concepts with Java, by Silberschatz, Galvin, and Gagne (2007). Many, if not all, the illustrations contained in this presentation come from this source.

2 1/23/2008CSCI 315 Operating Systems Design2 Operating System Design Goals User goals – operating system should be convenient to use, easy to learn, reliable, secure, and fast. System goals – operating system should have a simple design, be easy to implement, and maintain, as well as be flexible, reliable, error-free, and efficient.

3 1/23/2008CSCI 315 Operating Systems Design3 System Implementation Traditionally written in assembly language, operating systems can now be written in higher-level languages. Code written in a high-level language: –Can be written faster, –Is more compact, and –Is easier to understand and debug. An operating system is far easier to port (move to some other hardware) if it is written in a high-level language.

4 1/23/2008CSCI 315 Operating Systems Design4 Chapter 3 Processes

5 1/23/2008CSCI 315 Operating Systems Design5 Process Concept Process – a program in execution; process execution must progress in sequential fashion. A process includes: –program counter, –stack, –data section. heap stack data code program counter

6 1/23/2008CSCI 315 Operating Systems Design6 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.

7 1/23/2008CSCI 315 Operating Systems Design7 Process State Transition Diagram new ready terminated running waiting admitted interrupt exit scheduler dispatch I/O or event waitI/O or event completion

8 1/23/2008CSCI 315 Operating Systems Design8 Process Control Block (PCB) OS bookkeeping information associated with each process: Process state, Program counter, CPU registers, CPU scheduling information, Memory-management information, Accounting information, I/O status information, process id process state program counter registers memory limits list of open files

9 1/23/2008CSCI 315 Operating Systems Design9 CPU Switching

10 1/23/2008CSCI 315 Operating Systems Design10 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 between the various queues.

11 1/23/2008CSCI 315 Operating Systems Design11 Processes and OS Queues

12 1/23/2008CSCI 315 Operating Systems Design12 Process Scheduling CPU ready queue I/O I/O queueI/O request time slice expired fork a child wait for interrupt interrupt occurs child executes


Download ppt "1/23/2008CSCI 315 Operating Systems Design1 Processes Notice: The slides for this lecture have been largely based on those accompanying the textbook Operating."

Similar presentations


Ads by Google