Major Requirements of an Operating System Process Description and Control

Similar documents
Process Description and Control. Major Requirements of an Operating System

Process Description and Control

Major Requirements of an OS

Process Description and Control. Chapter 3

Operating Systems. Lecture 3- Process Description and Control. Masood Niazi Torshiz

Operating System Control Structures

Process Description and Control. Chapter 3

Process Description and Control

Today s class. Finish review of C Process description and control. Informationsteknologi. Tuesday, September 18, 2007

Dr. D. M. Akbar Hussain DE5 Department of Electronic Systems

Processes. Process Management Chapter 3. When does a process gets created? When does a process gets terminated?

IT 540 Operating Systems ECE519 Advanced Operating Systems

Announcement. Exercise #2 will be out today. Due date is next Monday

Process. Discussion session 3 1/30/2016

Chapter 3 Process Description and Control

Process Description and Control

B.H.GARDI COLLEGE OF MASTER OF COMPUTER APPLICATION. Ch-3 Process Description and Control

Process Description and Control. Chapter 3

OPERATING SYSTEM. The Process. Introduction Process creation & termination Process state diagram Process scheduling & its criteria

Wednesday, September 14, Chapter 3: Processes

Introduction to Processes in Computer Systems SEEM

PROCESS CONTROL BLOCK TWO-STATE MODEL (CONT D)

Process Description and Control

PROCESS DESCRIPTION AND CONTROL

Following are a few basic questions that cover the essentials of OS:

Processes, PCB, Context Switch

CSCE Introduction to Computer Systems Spring 2019

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

Processes. OS Structure. OS Structure. Modes of Execution. Typical Functions of an OS Kernel. Non-Kernel OS. COMP755 Advanced Operating Systems

Why use an Operating System? Operating System Definition

OS Main Goals. 10/24/2013 Operating Systems, Beykent University 1

Chapter 8: Virtual Memory. Operating System Concepts Essentials 2 nd Edition

Operating System. Chapter 3. Process. Lynn Choi School of Electrical Engineering

Chap 4, 5: Process. Dongkun Shin, SKKU

1 PROCESSES PROCESS CONCEPT The Process Process State Process Control Block 5

Chapter 3 Process Description and Control

Course: Operating Systems Instructor: M Umair. M Umair

CS 471 Operating Systems. Yue Cheng. George Mason University Fall 2017

Processes and Threads. Processes and Threads. Processes (2) Processes (1)

UNIT 3. PROCESS MANAGEMENT

B. V. Patel Institute of Business Management, Computer &Information Technology, UTU

Process Concepts. CSC400 - Operating Systems. 3. Process Concepts. J. Sumey

Operating Systems Comprehensive Exam. Spring Student ID # 3/16/2006

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

Processes. Sanzheng Qiao. December, Department of Computing and Software

The fundamental task of any modern operating system is process management.

Chapter 9: Virtual Memory. Operating System Concepts 9 th Edition

Computer System Overview. Chapter 1

Operating Systems. Computer Science & Information Technology (CS) Rank under AIR 100

CSC 539: Operating Systems Structure and Design. Spring 2006

Chapter 9: Virtual Memory

Operating Systems Overview. Chapter 2

Computer Systems II. First Two Major Computer System Evolution Steps

THE PROCESS ABSTRACTION. CS124 Operating Systems Winter , Lecture 7

Computer System Overview

Main Points of the Computer Organization and System Software Module

OPERATING SYSTEM : RBMCQ0402. Third RavishBegusarai.

Processes and Threads

3.1 Introduction. Computers perform operations concurrently

Operating System Support

Lecture Topics. Announcements. Today: Operating System Overview (Stallings, chapter , ) Next: Processes (Stallings, chapter

Chapter 3: Processes

Operating System. Chapter 4. Threads. Lynn Choi School of Electrical Engineering

Announcements. Reading. Project #1 due in 1 week at 5:00 pm Scheduling Chapter 6 (6 th ed) or Chapter 5 (8 th ed) CMSC 412 S14 (lect 5)

operating system Spring 2017 Prof.Dr. Hasan Balik Student Name : Walid.W. Ramadan mansour Student ID :

by I.-C. Lin, Dept. CS, NCTU. Textbook: Operating System Concepts 8ed CHAPTER 13: I/O SYSTEMS

Chapter 3: Processes. Operating System Concepts 9 th Edit9on

System Call. Preview. System Call. System Call. System Call 9/7/2018

Interrupts Peter Rounce

2. The system of... generally ran one job at a time. These were called single stream batch processing.

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

Process! Process Creation / Termination! Process Transitions in" the Two-State Process Model! A Two-State Process Model!

Module 1. Introduction:

Demand Paging. Valid-Invalid Bit. Steps in Handling a Page Fault. Page Fault. Transfer of a Paged Memory to Contiguous Disk Space

Operating Systems Process description and control

Operating System. Operating System Overview. Structure of a Computer System. Structure of a Computer System. Structure of a Computer System

Introduction to Process in Computing Systems SEEM

CSC 453 Operating Systems

Computer Systems Overview

Operating Systems. Lecture 05

Virtual Memory. Virtual Memory. Demand Paging. valid-invalid bit. Virtual Memory Larger than Physical Memory

Operating Systems Comprehensive Exam. Spring Student ID # 3/20/2013

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

Virtual Memory. CSCI 315 Operating Systems Design Department of Computer Science

Inf2C - Computer Systems Lecture 16 Exceptions and Processor Management

Chapter 8 Virtual Memory

CPU Structure and Function. Chapter 12, William Stallings Computer Organization and Architecture 7 th Edition

Process Scheduling Queues

Computer-System Architecture (cont.) Symmetrically Constructed Clusters (cont.) Advantages: 1. Greater computational power by running applications

Processes. Processes and Process Management. What is a Process? What is a Process? What is a Process? Program Process

Lecture 4: Mechanism of process execution. Mythili Vutukuru IIT Bombay

REVIEW OF COMMONLY USED DATA STRUCTURES IN OS

Virtual Memory Outline

Techno India Batanagar Department of Computer Science & Engineering. Model Questions. Multiple Choice Questions:

Processes. CS 475, Spring 2018 Concurrent & Distributed Systems

CSCE 313: Intro to Computer Systems

CSCE 313 Introduction to Computer Systems. Instructor: Dezhen Song

Chapter 9: Virtual Memory

SMD149 - Operating Systems


Transcription:

Major Requirements of an Operating System Process Description and Control Chapter 3 Interleave the execution of several processes to maximize processor utilization while providing reasonable response time Allocate resources to processes Support interprocess communication and user creation of processes 1 2 Process Also called a task Execution of an individual program Can be traced list the sequence of instructions that execute 3 1

Two-State Process Model Not-Running Process in a Queue Process may be in one of two states Running Not-running 7 8 Process Creation Process Termination Submission of a batch job User logs on Created to provide a service such as printing Process creates another process Batch job issues Halt instruction User logs off Quit an application Error and fault conditions 9 10 Reasons for Process Termination Reasons for Process Termination Normal completion Time limit exceeded Memory unavailable Bounds violation Protection error example write to read-only file Arithmetic error Time overrun process waited longer than a specified maximum for an event 11 I/O failure Invalid instruction happens when try to execute data Privileged instruction Data misuse Operating system intervention such as when deadlock occurs Parent terminates so child processes terminate Parent request 12 2

Processes A Five-State Model Not-running ready to execute Blocked waiting for I/O Dispatcher cannot just select the process that has been in the queue the longest because it may be blocked Running Ready Blocked New Exit 13 14 Using Two Queues 17 3

Suspended Processes One Suspend State 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 Two new states Blocked, suspend Ready, suspend 19 20 Two Suspend States Reasons for Process Suspension 21 22 Operating System Control Structures Information about the current status of each process and resource Tables are constructed for each entity the operating system manages 24 4

Memory Tables I/O Tables Allocation of main memory to processes Allocation of secondary memory to processes Protection attributes for access to shared memory regions Information needed to manage virtual memory I/O device is available or assigned Status of I/O operation Location in main memory being used as the source or destination of the I/O transfer 25 26 File Tables Process Table Existence of files Location on secondary memory Current Status Attributes Sometimes this information is maintained by a file-management system Where process is located Attributes necessary for its management Process ID Process state Location in memory 27 28 Process Location Process includes set of programs to be executed Data locations for local and global variables Any defined constants Stack Process control block Collection of attributes Process image Collection of program, data, stack, and attributes 29 5

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 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. Typically, there are from 8 to 32 of these registers, although some RISC implementations have over 100. 31 32 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 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. 33 34 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) 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 35 Process Control Information Data Structuring A process may be linked to other process in 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. The process control block may contain pointers to other processes to support these structures. 36 6

Process Control Information Interprocess 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. 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. 37 38 Processor State Information Contents of processor registers User-visible registers Control and status registers Stack pointers Program status word (PSW) contains status information Example: the EFLAGS register on Pentium machines 40 Pentium II EFLAGS Register Modes of Execution User mode Less-privileged mode User programs typically execute in this mode System mode, control mode, or kernel mode More-privileged mode Kernel of the operating system 41 42 7

Process Creation When to Switch a Process 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 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 43 44 When to Switch a Process Change of Process State Trap error occurred may cause process to be moved to Exit state Supervisor call such as file open Save context of processor including program counter and other registers Update the process control block of the process that is currently running Move process control block to appropriate queue - ready, blocked Select another process for execution 45 46 Change of Process State Execution of the Operating System Update the process control block of the process selected Update memory-management data structures Restore context of the selected process 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 47 48 8

Execution of the Operating System Process-Based Operating System major kernel functions are separate processes Useful in multi-processor or multi-computer environment 50 UNIX SVR4 Process Management UNIX Process States Most of the operating system executes within the environment of a user process 51 52 9