1 Process Description and Control Chapter 3. 2 Process A program in execution An instance of a program running on a computer The entity that can be assigned.

Slides:



Advertisements
Similar presentations
Process Description and Control
Advertisements

Processes and Threads Chapter 3 and 4 Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community College,
More on Processes Chapter 3. Process image _the physical representation of a process in the OS _an address space consisting of code, data and stack segments.
Chapter 3 Process Description and Control
Informationsteknologi Tuesday, September 18, 2007 Computer Systems/Operating Systems - Class 61 Today’s class Finish review of C Process description and.
Day 11 Processes. Operating Systems Control Tables.
Introduction to Processes
6/9/2015B.Ramamurthy1 Process Description and Control B.Ramamurthy.
Chapter 3 Process Description and Control
Process Description and Control
Process Description and Control Module 1.0. Major Requirements of an Operating System Interleave the execution of several processes to maximize processor.
Process Description and Control Chapter 3. Major Requirements of an Operating System Interleave the execution of several processes to maximize processor.
Page 1 Processes and Threads Chapter 2. Page 2 Processes The Process Model Multiprogramming of four programs Conceptual model of 4 independent, sequential.
Page 1 Processes and Threads Chapter Processes 2.2 Threads 2.3 Interprocess communication 2.4 Classical IPC problems 2.5 Scheduling.
Chapter 3 Process Description and Control
1 Process Description and Control Chapter 3. 2 Process Management—Fundamental task of an OS The OS is responsible for: Allocation of resources to processes.
CSCE 351: Operating System Kernels
Advanced OS Chapter 3p2 Sections 3.4 / 3.5. Interrupts These enable software to respond to signals from hardware. The set of instructions to be executed.
CSSE Operating Systems
1 Lecture 4: Processes Operating System Spring 2007 Chapter 4 of textbook.
1 Process Description and Control Chapter 3 = Why process? = What is a process? = How to represent processes? = How to control processes?
Process Description and Control A process is sometimes called a task, it is a program in execution.
Using Two Queues. Using Multiple Queues Suspended Processes Processor is faster than I/O so all processes could be waiting for I/O Processor is faster.
Process Description and Control
Process Description and Control Chapter 3. Major Requirements of an OS Interleave the execution of several processes to maximize processor utilization.
Process Description and Control
Operating System 3 PROCESS DESCRIPTION AND CONTROL.
CSNB224 – AAG 2007 Process Description and Control Chapter 3.
Chapter 3 Process Description and Control Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community College,
Chapter 3 Process Description and Control
Chapter 3 Process Description and Control Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community College,
Implementing Processes and Process Management Brian Bershad.
Chapter 41 Processes Chapter 4. 2 Processes  Multiprogramming operating systems are built around the concept of process (also called task).  A process.
Chapter 3 Advanced Operating System
Operating System 3 PROCESS DESCRIPTION AND CONTROL.
Chapter 3 Process Description and Control
Computer Architecture and Operating Systems CS 3230: Operating System Section Lecture OS-1 Process Concepts Department of Computer Science and Software.
Lecture 3 Process Concepts. What is a Process? A process is the dynamic execution context of an executing program. Several processes may run concurrently,
Requirements of an Operating System Fundamental Task: Process Management The Operating System must – Interleave the execution of multiple processes – Allocate.
Chapter 3 Process Description and Control Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic, N.Z.
Processes Processes Dr. Sunny Jeong & Mr. M.H Park Operating Systems: Internals and Design Principles William Stallings.
Chapter 3 Process Description and Control Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic, N.Z.
Process Management CT213 - Computing systems Organization.
Politecnico di Milano © 2001 William Fornaciari Operating System Processes Lecturer: William Fornaciari Politecnico di Milano
Process Description and Control
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 3: Process-Concept.
1 Computer Systems II Introduction to Processes. 2 First Two Major Computer System Evolution Steps Led to the idea of multiprogramming (multiple concurrent.
1 Process Description and Control Chapter 2. 2 Process A program in execution An instance of a program running on a computer The entity that can be assigned.
Process Description and Control Chapter 3. Source Modified slides from Missouri U. of Science and Tech.
1 Process Description and Control Chapter 3. 2 Requirements of an Operating System Interleave the execution of multiple processes to maximize processor.
Chapter 2 Process Management. 2 Objectives After finish this chapter, you will understand: the concept of a process. the process life cycle. process states.
Process Description and control G.Anuradha (Referred from william stallings and galvin 8 th edition)
CSNB224 – AAG 2007 Process Description and Control Chapter 3.
Processes and Threads Chapter 3 and 4 Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community College,
Process Description and Control
Processes and threads.
Lecture Topics: 11/1 Processes Process Management
Chapter 3: Processes.
Structure of Processes
Process & its States Lecture 5.
Process Description and Control
Process Description and Control
Process Description and Control
Operating System 3 PROCESS DESCRIPTION AND CONTROL
Process Control B.Ramamurthy 2/22/2019 B.Ramamurthy.
Process Description and Control
Process Description and Control
Unix Process Control B.Ramamurthy 4/11/2019 B.Ramamurthy.
Chapter 2 Processes and Threads 2.1 Processes 2.2 Threads
Process Description and Control
Presentation transcript:

1 Process Description and Control Chapter 3

2 Process A program in execution An instance of a program running on a computer The entity that can be assigned to and executed on a processor A unit of activity characterized by the execution of a sequence of instructions, a current state, and an associated set of system instructions

3 Requirements of an Operating System Interleave the execution of multiple processes to maximize processor utilization while providing reasonable response time Allocate resources to processes Support inter-process communication and user creation of processes

4 First Thought of the Day Would we want applications to be written directly for a given hardware platform? –Compiler -> Hardware specific –For a general application we don’t want it hardware specific because there’s lots of different hardware out there. –A hardware driver -> For a specific hardware. –For consoles we don’t have to since hardware constant –Efficiency vs. Generality

5 Concepts Computer platform consists of a collection of hardware resources Computer applications are developed to perform some task Operating system provides a convenient to use, feature rich, secure, and consistent interface for applications to use OS provides a uniform, abstract representation of resources that can be requested and accessed by application

6 Second Thought for the Day How might a process get created? –The user starting the application –The system itself starts a process –A process can start another process

7 Process Creation

8 Third Thought of the Day What would cause a process to be terminated? –An uncaught or handled error within the program. –It finished what ever it was doing. –The user decides to end it. –The operating system.

9 Process Termination

10 Process Termination

11 Example Execution

12

13 Fourth Thought of the Day What things to keep track of for a process? –Keep track of what ever was in the registers –How long the process has been running –Where its stored in memory so no one else over writes it. –How much its using the CPU –Priority –Identifier

14 Process Control Block

15 Process Control Block Contains the process elements Created and manage by the operating system – Specifically the Dispatcher Allows support for multiple processes

16 Two-State Process Model Process may be in one of two states –Running –Not-running

17 Not-Running Process in a Queue What is the problem with this simple process scheduling model? No priority No difference between those ready and those waiting for I/O.

18 Five-State Process Model

19 Using Two Queues Is one blocked queue enough and why (Hint: Do I/O devices all take the same amount of time)?

20 Multiple Blocked Queues

21 One Suspend State

22 Suspended Processes Processor is faster than I/O so all processes could be waiting for I/O Swap these processes to disk to free up more memory Blocked state becomes suspend state when swapped to disk

23 Reasons for Process Suspension

24 Two Suspend States

25 Process Control Block a Detailed Look

26 Process Control Block Process identification –Identifiers Numeric identifiers that may be stored with the process control block include –Identifier of this process –Identifier of the process that created this process (parent process) –User identifier

27 Process Control Block Processor State Information –User-Visible Registers A user-visible register is one that may be referenced by means of the machine language that the processor executes while in user mode. Typically, there are from 8 to 32 of these registers, although some RISC implementations have over 100.

28 Process Control Block Processor State Information –Control and Status Registers These are a variety of processor registers that are employed to control the operation of the processor. These include Program counter: Contains the address of the next instruction to be fetched Condition codes: Result of the most recent arithmetic or logical operation (e.g., sign, zero, carry, equal, overflow) Status information: Includes interrupt enabled/disabled flags, execution mode

29 Pentium II EFLAGS Register

30 Process Control Block Processor State Information –Stack Pointers Each process has one or more last-in-first-out (LIFO) system stacks associated with it. A stack is used to store parameters and calling addresses for procedure and system calls. The stack pointer points to the top of the stack.

31 Process Control Block Process Control Information –Scheduling and State Information This is information that is needed by the operating system to perform its scheduling function. Typical items of information: Process state: defines the readiness of the process to be scheduled for execution (e.g., running, ready, waiting, halted). Priority: One or more fields may be used to describe the scheduling priority of the process. In some systems, several values are required (e.g., default, current, highest-allowable)

32 Process Control Block Process Control Information –Scheduling and State Information Scheduling-related information: This will depend on the scheduling algorithm used. Examples are the amount of time that the process has been waiting and the amount of time that the process executed the last time it was running. Event: Identity of event the process is awaiting before it can be resumed

33 Process Control Block Process Control Information –Data Structuring How the processes may be organized (e.g. a queue, ring, or some other structure). –For example, all processes in a waiting state for a particular priority level may be linked in a queue. A process may exhibit a parent-child (creator- created) relationship with another process.

34 Process Control Block Process Control Information –Inter-process Communication Various flags, signals, and messages may be associated with communication between two independent processes. Some or all of this information may be maintained in the process control block. –Process Privileges Processes are granted privileges in terms of the memory that may be accessed and the types of instructions that may be executed. In addition, privileges may apply to the use of system utilities and services.

35 Process Control Block Process Control Information –Memory Management This section may include pointers to segment and/or page tables that describe the virtual memory assigned to this process. –Resource Ownership and Utilization Resources controlled by the process may be indicated, such as opened files. A history of utilization of the processor or other resources may also be included; this information may be needed by the scheduler.

36 Example: UNIX

37

38

39 UNIX SVR4 Process Management Most of the operating system executes within the environment of a user process

40 Two Special Processes Process 0 : sched – Creates the init process. Process 1 : init – Is the parent to all other processes.

41 Steps to Create a Process An existing process makes a fork call to create the new process. ID created, Memory setup, and Process moved to ready to run state. Parent informed of child’s ID. Before the child process starts both the parent and the child are at the same line of code.

42 Chapter Summary

43 Process Creation Assign a unique process identifier Allocate space for the process Initialize process control block Set up appropriate linkages –Ex: add new process to linked list used for scheduling queue Create of expand other data structures –Ex: maintain an accounting file

44 When to Switch a Process Clock interrupt –process has executed for the maximum allowable time slice I/O interrupt Memory fault –memory address is in virtual memory so it must be brought into main memory

45 When to Switch a Process Trap –error or exception occurred –may cause process to be moved to Exit state Supervisor call –such as file open

46 Change of Process State Save context of processor including program counter and other registers Update the process control block of the process that is currently in the Running state Move process control block to appropriate queue – ready; blocked; ready/suspend Select another process for execution

47 Change of Process State Update the process control block of the process selected Update memory-management data structures Restore context of the selected process

48 End

49 Execution of the Operating System Non-process Kernel –Execute kernel outside of any process –Operating system code is executed as a separate entity that operates in privileged mode Execution Within User Processes –Operating system software within context of a user process –Process executes in privileged mode when executing operating system code

50 Execution of the Operating System Process-Based Operating System –Implement operating system as a collection of system processes –Useful in multi-processor or multi- computer environment

51

52 UNIX Process States

53 UNIX Process Image