Structure of Processes

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
A. Frank - P. Weisberg Operating Systems Process Scheduling and Switching.
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.
Structure of Processes
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.
Introduction to Kernel
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.
Home: Phones OFF Please Unix Kernel Parminder Singh Kang Home:
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.
Ceng Operating Systems Chapter 2.1 : Processes Process concept Process scheduling Interprocess communication Deadlocks Threads.
CSSE Operating Systems
UNIX Process Creation Every process, except process 0, is created by the fork() system call fork() allocates entry in process table and assigns a unique.
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.
University of Pennsylvania 9/12/00CSE 3801 Multiprogramming CSE 380 Lecture Note 3.
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
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 Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community College,
Chapter 41 Processes Chapter 4. 2 Processes  Multiprogramming operating systems are built around the concept of process (also called task).  A process.
Chapter 3 Process Description and Control
The Structure of Processes (Chap 6 in the book “The Design of the UNIX Operating System”)
Lecture 3 Process Concepts. What is a Process? A process is the dynamic execution context of an executing program. Several processes may run concurrently,
1 Chapter 2.1 : Processes Process concept Process concept Process scheduling Process scheduling Interprocess communication Interprocess communication Threads.
Threads G.Anuradha (Reference : William Stallings)
1 Computer Systems II Introduction to Processes. 2 First Two Major Computer System Evolution Steps Led to the idea of multiprogramming (multiple concurrent.
Processes, Threads, and Process States. Programs and Processes  Program: an executable file (before/after compilation)  Process: an instance of a program.
Process Description and Control Chapter 3. Source Modified slides from Missouri U. of Science and Tech.
1 Structure of Processes Chapter 6 Process State and Transition Data Structure for Process Layout of System Memory THE DESIGN OF THE UNIX OPERATING SYSTEM.
Managing Processors Jeff Chase Duke University. The story so far: protected CPU mode user mode kernel mode kernel “top half” kernel “bottom half” (interrupt.
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.
What is a Process ? A program in execution.
Processes and Threads Chapter 3 and 4 Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community College,
WORKING OF SCHEDULER IN OS
Introduction to Kernel
Process Description and Control
Process concept.
Process Management Process Concept Why only the global variables?
Structure of Processes
Protection of System Resources
Day 08 Processes.
Day 09 Processes.
Operating Systems: A Modern Perspective, Chapter 6
Processes A process is a running program.
Intro to Processes CSSE 332 Operating Systems
Process & its States Lecture 5.
Process Description and Control
Process Description and Control
Process Description and Control
Process Control B.Ramamurthy 2/22/2019 B.Ramamurthy.
Process Description and Control
Process Description and Control
Process Description and Control
Process Description and Control
Unix Process Control B.Ramamurthy 4/11/2019 B.Ramamurthy.
Processes in Unix and Windows
Chapter 2 Processes and Threads 2.1 Processes 2.2 Threads
Process Description and Control
Process Description and Control
Process Description and Control in Unix
Process Description and Control in Unix
Structure of Processes
Presentation transcript:

Structure of Processes Chapter 6 Structure of Processes Process State and Transition Data Structure for Process Layout of System Memory THE DESIGN OF THE UNIX OPERATING SYSTEM Maurice J. bach Prentice Hall

Process image in virtural memory

Process Creation Assign a unique pid to the new process. Allocate space for all the elements of the process image. How much? The process control block is initialized. Inherit info from parent. The appropriate linkages are set: for scheduling, state queues.. Create and initialize other data structures

Process interruption Two kinds of process interruptions: interrupt and trap. Interrupt: Caused by some event external to and asynchronous to the currently running process, such as completion of IO. Trap : Error or exception condition generated within the currently running process. Ex: illegal access to a file, arithmetic exception. Supervisor call: explicit interruption

Unix System V All user processes in the system have as root ancestor a process called init. When a new interactive user logs onto the system, initcreates a user process, subsequently this user process can create child processes and so on. init is created at the boot-time. Process states : User running , kernel running, Ready in memory, sleeping in memory (blocked), Ready swapped (ready-suspended), sleeping swapped (blocked-suspended), created (new), zombie , preempted (used in real-time scheduling).

Cont…. Similar to our 7 state model 2 running states: User and Kernel 􀂄transitions to other states (blocked, ready) must come from kernel running Sleeping states (in memory, or swapped) correspond to our blocking states A preempted state is distinguished from the ready state (but they form 1 queue) Preemption can occur only when a process is about to move from kernel to user mode

Process States and Transitions User Running Preempted Zombie Asleep in Memory Sleep, Swapped Ready to Run, Swapped fork Created Ready to Run in Memory Kernel Running not enough mem (swapping system only) swap out wakeup enough mem sleep reschedule process preempt return to user system call, interrupt interrupt, interrupt return exit

Data Structures for Process Text Stack Data File Descriptor Table Per Process Region Table Kernel Process Table Kernel Region Table A Process U Area

Data Structure for Process (contd.) per process region table Kernel region table u area main memory Kernel process table

State of a Process Process table entry U area Contains general fields of processes that must be always be accessible to the kernel U area further characteristics of the process only need to be accessible to the running process itself

Process table entry State field: user running, kernel running etc. Fields that allow the kernel to locate the process and u area. Requires while context switch Process size : kernel know how much space to allocate for the process. User ID Process ID

Process table entry (contd.) Event descriptor. Used when the process is in the "sleep" state. Scheduling parameters. Allow the kernel to determine the order in which processes move to the states "kernel running" and "user running” A signal field. keeps the signals sent to a process but not yet handled. Various timers: process execution time, resource utilization etc.

U Area A pointer to the process table entry User IDs various Timer: Execution time in user mode Execution Time in kernel mode An error field: keeps error during system call Return value field: result of system call

U Area (contd.) I/O parameters The current directory and current root Amount of data transfer Address of source and target etc. The current directory and current root User file descriptor table Limit fields Restrict process size Restrict size of the file it can write The control terminal field: login terminal associated with the process, if one exists An array indicates how the process wishes to react to signal

Per Process Region Table (Pregion) Each pregion entry points to the kernel region table Starting virtual (absolute) address of the region Permission filed: read-only, read-write, read-execute

Kernel Region table Kernel region table contains the pointer to the page table which keeps the physical memory address

<Processes and Regions> 8K 16K 32K b a d c e 4K Text Data Stack Process A B Per Proc Region Tables (Virtual Addresses) Region <Processes and Regions>

Pages and Page Tables Logical Page Number Physical Page Number 0 177 0 177 1 54 2 209 3 17

Pages and Page Tables (contd.) 8K 32K 64K Text Data Stack 541K 783K 986K 897K 87K 552K 727K 941K empty 137K 852K 764K . 1096K 2001K 433K 333K Per Proc Region Table Page Tables(Physical Addresses) Virtual Addresses <Mapping Virtual Addresses to Physical Address>

Process and Context Switching Clock interrupt: The OS determines if the time slice of the currently running process is over, then switches it to Ready state, and dispatches another from Ready queue. “Process switch” Memory fault: (Page fault) A page fault occurs when the requested program page is not in the main memory. OS (page fault handler) brings in the page requested, resumes faulted process. IO Interrupt : OS determines what IO action occurred and takes appropriate action.

Cont… Process switch: A transition between two memory-resident processes in a multiprogramming environment. Context switch: Changing context from a executing program to an Interrupt Service Routine (ISR). Part of the context that will be modified by the ISR needs to be saved. This required context is saved and restored by hardware as specified by the ISR.

The context of a process The context of the process consists of the contents of its (user) address space and the contents of hardware register and kernel data structure that relate to the process. User-level context 􀂄Process Text (ie: code: read-only) 􀂄Process Data 􀂄User Stack (calls/returns in user mode) 􀂄Shared memory (for IPC) Register level context Program counter,Processor status register,Stack pointer, General purpose register

System-level context 􀂄Process table entry 􀂊the actual entry concerning this process in the Process Table maintained by OS 􀂄Process state, UID, PID, priority, event awaiting, signals sent, pointers to memory holding text, data... 􀂄U (user) area 􀂊additional process info needed by the kernel when executing in the context of this process 􀂄effective UID, timers, limit fields, files in use .􀂄Kernel stack (calls/returns in kernel mode) 􀂄Per Process Region Table (used by memory manager).