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

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

Major Requirements of an Operating System Process Description and Control

Process Description and Control

Major Requirements of an OS

Operating System Control Structures

Process Description and Control

Process Description and Control. Chapter 3

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

Process Description and Control. Chapter 3

IT 540 Operating Systems ECE519 Advanced Operating Systems

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

Chapter 3 Process Description and Control

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

Process. Discussion session 3 1/30/2016

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

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

Process Description and Control

Introduction to Processes in Computer Systems SEEM

Process Description and Control

PROCESS CONTROL BLOCK TWO-STATE MODEL (CONT D)

Process Description and Control. Chapter 3

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

PROCESS DESCRIPTION AND CONTROL

Chapter 3 Process Description and Control

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

Why use an Operating System? Operating System Definition

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

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

Wednesday, September 14, Chapter 3: Processes

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

OPERATING SYSTEM : RBMCQ0402. Third RavishBegusarai.

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

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

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

THE PROCESS ABSTRACTION. CS124 Operating Systems Winter , Lecture 7

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

UNIT 3. PROCESS MANAGEMENT

CSCE Introduction to Computer Systems Spring 2019

Computer Systems II. First Two Major Computer System Evolution Steps

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

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

3.1 Introduction. Computers perform operations concurrently

Chap 4, 5: Process. Dongkun Shin, SKKU

Operating Systems Process description and control

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

Course: Operating Systems Instructor: M Umair. M Umair

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

Chapter 9: Virtual Memory

Computer System Overview. Chapter 1

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

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

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

Virtual Memory Outline

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

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

REVIEW OF COMMONLY USED DATA STRUCTURES IN OS

Chapter 8 Virtual Memory

Inf2C - Computer Systems Lecture 16 Exceptions and Processor Management

Introduction to Process in Computing Systems SEEM

Lecture Topics. Announcements. Today: Threads (Stallings, chapter , 4.6) Next: Concurrency (Stallings, chapter , 5.

Computer System Overview

Interrupts Peter Rounce

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

Computer Systems Overview

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

Module 1. Introduction:

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

Main Points of the Computer Organization and System Software Module

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

CSC 539: Operating Systems Structure and Design. Spring 2006

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

Virtual Memory COMPSCI 386

Computer System Overview

Chapter 8: Virtual Memory. Operating System Concepts

Operating System Support

Background. Demand Paging. valid-invalid bit. Tevfik Koşar. CSC Operating Systems Spring 2007

آنستیتیوت تکنالوجی معلوماتی و مخابراتی ICTI

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

Chapter 9: Virtual Memory

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

Operating Systems. Overview Virtual memory part 2. Page replacement algorithms. Lecture 7 Memory management 3: Virtual memory

Processes and More. CSCI 315 Operating Systems Design Department of Computer Science


MEMORY MANAGEMENT/1 CS 409, FALL 2013

Operating Systems. Lecture 05

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

CSE 410. Operating Systems

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

Processes and Threads

Computer System Overview OPERATING SYSTEM TOP-LEVEL COMPONENTS. Simplified view: Operating Systems. Slide 1. Slide /S2. Slide 2.

CS307: Operating Systems

UNIT- 5. Chapter 12 Processor Structure and Function

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

Page Replacement. 3/9/07 CSE 30341: Operating Systems Principles

Processes and Non-Preemptive Scheduling. Otto J. Anshus

stack Two-dimensional logical addresses Fixed Allocation Binary Page Table

Virtual Memory. Overview: Virtual Memory. Virtual address space of a process. Virtual Memory

Processes. Dr. Yingwu Zhu

HY225 Lecture 12: DRAM and Virtual Memory

Chapter 8 Virtual Memory

Transcription:

Operating Systems Lecture 3- Process Description and Control Masood Niazi Torshiz www.mniazi.ir 1

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 interprocess communication and user creation of processes 2

Concepts Computer platform consists of a collection of hardware resources Computer applications are developed to perform some task Inefficient for applications to be written directly for a given hardware platform 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 3

Manage Execution of Applications Resources made available to multiple applications Processor is switched among multiptle application The processor and I/O devices can be used efficiently 4

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 5

Process Elements Identifier State Priority Program counter Memory pointers Context data I/O status information Accounting information 6

Process Control Block Contains the process elements Created and manage by the operating system Allows support for multiple processes 7

Process Control Block 8

Trace of Process Sequence of instruction that execute for a process Dispatcher switches the processor from one process to another 9

Example Execution 10

Trace of Processes 11

12

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

Not-Running Process in a Queue 14

Process Creation 15

Process Termination 16

Process Termination 17

Processes 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 18

A Five-State Model Running Ready Blocked New Exit 19

Five-State Process Model 20

Process States 21

Using Two Queues 22

Multiple Blocked Queues 23

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 Two new states Blocked/Suspend ReadySuspend 24

One Suspend State 25

Two Suspend States 26

Reasons for Process Suspension 27

Processes and Resources 28

Operating System Control Structures Information about the current status of each process and resource Tables are constructed for each entity the operating system manages 29

Memory 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 30

I/O Tables 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 31

File Tables Existence of files Location on secondary memory Current Status Attributes Sometimes this information is maintained by a file management system 32

Process Table Where process is located Attributes in the process control block Program Data Stack 33

Process Image 34

35

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 36

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. 37

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 38

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. 39

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) 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. 40

Process Control Block 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. 41

Process Control Block 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. 42

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. 43

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 44

Pentium II EFLAGS Register 45

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 46

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 47

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 48

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 49

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 50

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

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 52

53

54

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

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

UNIX Process States 57

UNIX Process Image 58

59