Operating System: Cset209
Operating System: Cset209
SYSTEM: CSET209
FUNCTIONALITY OF OS
OS
Functionality
Contents to be Discussed
1. Process management
Process and its state diagram
Process Control Block
2. Context switching
3. Schedular and dispatcher
4. System calls and interrupts
4
PROCESS S
The operating system is responsible for the following activities in connection with
Process Management:
DOUBLE CLICKING/
COMMAND LINE
EXECUTION OF
Program PROG.EXE OR A.OUT
(executable file) Process
Passive entity (active entity)
HDD
RAM
7
ATTRIBUTES AND PCB OF A PROCESS
self.io_status_info = io_status_info
ATTRIBUTES AND PCB OF A PROCESS
The Attributes of the process are used by the Operating System to create the process control
block (PCB) for each of them. This is also called context of the process. Attributes which are
stored in the PCB are described below:
1. Process ID: When a process is created, a unique id is assigned to the process which is used
for unique identification of the process in the system.
2. Program counter: A program counter stores the address of the last instruction of the
process on which the process was suspended. The CPU uses this address when the execution
of this process is resumed.
3. Process State: The Process, from its creation to the completion, goes through various
states which are new, ready, running and waiting.
4. Priority: Every process has its own priority. The process with the highest priority among
the processes gets the CPU first. This is also stored on the process control block.
ATTRIBUTES AND PCB OF A PROCESS
5. General Purpose Registers: Every process has its own set of registers which are used to
hold the data which is generated during the execution of the process.
instruction register (IR)
memory buffer register (MBR)
memory data register (MDR)
memory address register (MAR)
6. List of open files: During the Execution, Every process uses some files which need to be
present in the main memory. OS also maintains a list of open files in the PCB.
7. List of open devices: OS also maintain the list of all open devices which are used during
the execution of the process.
ATTRIBUTES AND PCB OF A PROCESS
ready 2 running
Scheduler
dispatch
waiting
3.3
3. PROCESS SCHEDULING
VM2
To meet the objectives of Multiprogramming, Schedulers are responsible for selecting a
process for scheduling. Three types of scheduler are:
VM3
Slide 21
If the short-term scheduler takes 20 milliseconds to decide to execute a process or 100 milliseconds, then
what percentage of the CPU is being used (or wasted) simply for scheduling the work, considering the
• It is the module that gives control of the CPU to the process selected by the short-time
scheduler.
• A dispatcher switches execution from one process to another process called context switching.
It also setup user registers, memory mapping, etc.
• Dispatch latency: amount of time taken by the system to stop one process and give permission
to another process to being execution.
18
SYSTEM CALLS IN OS
A system call is a method for a computer program to request a service from the kernel
of the operating system on which it is running. It is the only method to access the
kernel system. All programs or processes that require resources for execution must use
system calls.
Even simple programs may make heavy use of the operating system. Frequently,
systems execute thousands of system calls per second.
Mostly accessed by programs via a high-level Application Programming Interface
(API) rather than direct system call use.
AN EXAMPLE OF SYSTEM CALL USAGE
System call sequence to copy the contents of one file to another file
TYPES OF SYSTEM CALLS
Types of System Calls Windows Linux
CreateProcess()
fork()
ExitProcess()
Process Control exit()
WaitForSingleObject()
wait()
CreateFile() open()
ReadFile() read()
File Management WriteFile() write()
CloseHandle() close()
SetConsoleMode() ioctl()
ReadConsole() read()
Device Management
WriteConsole() write()
GetCurrentProcessID() getpid()
SetTimer() alarm()
Information Maintenance
Sleep() sleep()
CreatePipe()
pipe()
CreateFileMapping()
Communication shmget()
MapViewOfFile()
mmap()
WHAT IS INTERRUPT IN OS?
1. Hardware Interrupts
A hardware interrupt is a condition related to the state of the hardware that may be
signaled by an external hardware device, e.g., an interrupt request (IRQ) line on a PC,
or detected by devices embedded in processor logic to communicate that the device
needs attention from the operating system. For example, pressing a keyboard key or
moving a mouse triggers hardware interrupts that cause the processor to read the
keystroke or mouse position.
External Interrupts: These are generated by external hardware devices, such as
keyboards, mice, or other peripherals, to signal that they require attention.
Timer Interrupts: These are generated by the system's timer or clock to perform
tasks at regular intervals, such as updating the system clock or preempting the current
process.
TYPES OF INTERRUPT
2. Software Interrupts
The processor requests a software interrupt upon executing particular instructions or
when certain conditions are met. Software interrupts may also be unexpectedly
triggered by program execution errors. These interrupts are typically
called traps or exceptions.
System Calls: Software interrupts can be triggered by software instructions or
system calls, allowing a program to request services from the operating system,
such as reading from or writing to files.
TYPES OF INTERRUPT
Exception Interrupts:
Faults: These occur due to errors in the program, such as division by zero or accessing
invalid memory.
Traps: These are intentional interrupts generated by the program for debugging or other
purposes.
Abort: These occur when a severe error is detected, and the program or system must be
terminated.
TYPES OF INTERRUPT
Maskable Interrupts: These can be temporarily ignored or delayed by the processor under
certain conditions. The processor can be configured to mask or enable specific interrupts.