SlideShare ist ein Scribd-Unternehmen logo
1 von 85
Downloaden Sie, um offline zu lesen
DISTRIBUTED OPERATING
SYSTEMS
Sandeep Kumar Poonia
Head Of Dept. CS/IT
B.E., M.Tech., UGC-NET
LM-IAENG, LM-IACSIT,LM-CSTA, LM-AIRCC, LM-SCIEI, AM-UACEE
CPU SCHEDULING
īƒ’ Basic Concepts
īƒ’ Scheduling Criteria
īƒ’ Scheduling Algorithms
īƒ’ Multiple-Processor Scheduling
īƒ’ Real-Time Scheduling
īƒ’ Algorithm Evaluation
BASIC CONCEPTS
īƒ’ Maximum CPU utilization obtained with
multiprogramming
īƒ’ CPU–I/O Burst Cycle – Process execution
consists of a cycle of CPU execution and I/O
wait.
īƒ’ CPU burst distribution
CPU SCHEDULER
īƒ’ Selects from among the processes in memory that
are ready to execute, and allocates the CPU to one
of them.
īƒ’ CPU scheduling decisions may take place when a
process:
1.Switches from running to waiting state.
2.Switches from running to ready state.
3.Switches from waiting to ready.
4.Terminates.
īƒ’ Scheduling under 1 and 4 is nonpreemptive.
īƒ’ All other scheduling is preemptive.
DISPATCHER
īƒ’ Dispatcher module gives control of the CPU to the
process selected by the short-term scheduler; this
involves:
īƒ‰ switching context
īƒ‰ switching to user mode
īƒ‰ jumping to the proper location in the user program to
restart that program
īƒ’ Dispatch latency – time it takes for the dispatcher
to stop one process and start another running.
SCHEDULING CRITERIA
īƒ’ CPU utilization – keep the CPU as busy as
possible
īƒ’ Throughput – # of processes that complete
their execution per time unit
īƒ’ Turnaround time – amount of time to
execute a particular process
īƒ’ Waiting time – amount of time a process has
been waiting in the ready queue
īƒ’ Response time – amount of time it takes
from when a request was submitted until the
first response is produced, not output (for
time-sharing environment)
OPTIMIZATION CRITERIA
īƒ’ Max CPU utilization
īƒ’ Max throughput
īƒ’ Min turnaround time
īƒ’ Min waiting time
īƒ’ Min response time
FIRST-COME, FIRST-SERVED (FCFS) SCHEDULING
Process Burst Time
P1 24
P2 3
P3 3
īƒ’ Suppose that the processes arrive in the order: P1 ,
P2 , P3
The Gantt Chart for the schedule is:
īƒ’ Waiting time for P1 = 0; P2 = 24; P3 = 27
īƒ’ Average waiting time: (0 + 24 + 27)/3 = 17
P1 P2 P3
24 27 300
FCFS SCHEDULING (CONT.)
Suppose that the processes arrive in the order
P2 , P3 , P1 .
īƒ’ The Gantt chart for the schedule is:
īƒ’ Waiting time for P1 = 6; P2 = 0; P3 = 3
īƒ’ Average waiting time: (6 + 0 + 3)/3 = 3
īƒ’ Much better than previous case.
īƒ’ Convoy effect short process behind long process
P1P3P2
63 300
SHORTEST-JOB-FIRST (SJR) SCHEDULING
īƒ’ Associate with each process the length of its next
CPU burst. Use these lengths to schedule the
process with the shortest time.
īƒ’ Two schemes:
īƒ‰ nonpreemptive – once CPU given to the process it
cannot be preempted until completes its CPU burst.
īƒ‰ preemptive – if a new process arrives with CPU burst
length less than remaining time of current executing
process, preempt. This scheme is know as the
Shortest-Remaining-Time-First (SRTF).
īƒ’ SJF is optimal – gives minimum average waiting
time for a given set of processes.
Process Arrival Time Burst Time
P1 0.0 7
P2 2.0 4
P3 4.0 1
P4 5.0 4
īƒ’ SJF (non-preemptive)
īƒ’ Average waiting time = (0 + 6 + 3 + 7)/4 = 4
EXAMPLE OF NON-PREEMPTIVE SJF
P1 P3 P2
73 160
P4
8 12
EXAMPLE OF PREEMPTIVE SJF
Process Arrival Time Burst Time
P1 0.0 7
P2 2.0 4
P3 4.0 1
P4 5.0 4
īƒ’ SJF (preemptive)
īƒ’ Average waiting time = (9 + 1 + 0 +2)/4 = 3
P1 P3P2
42 110
P4
5 7
P2 P1
16
PRIORITY SCHEDULING
īƒ’ A priority number (integer) is associated with each
process
īƒ’ The CPU is allocated to the process with the highest
priority (smallest integer ī‚ē highest priority).
īƒ‰ Preemptive
īƒ‰ nonpreemptive
īƒ’ SJF is a priority scheduling where priority is the
predicted next CPU burst time.
īƒ’ Problem ī‚ē Starvation – low priority processes may never
execute.
īƒ’ Solution ī‚ē Aging – as time progresses increase the
priority of the process.
ROUND ROBIN (RR)
īƒ’ Each process gets a small unit of CPU time (time
quantum), usually 10-100 milliseconds. After this time
has elapsed, the process is preempted and added to the
end of the ready queue.
īƒ’ If there are n processes in the ready queue and the time
quantum is q, then each process gets 1/n of the CPU
time in chunks of at most q time units at once. No
process waits more than (n-1)q time units.
īƒ’ Performance
īƒ‰ q large īƒž FIFO
īƒ‰ q small īƒž q must be large with respect to context switch,
otherwise overhead is too high.
EXAMPLE OF RR WITH TIME QUANTUM = 20
Process Burst Time
P1 53
P2 17
P3 68
P4 24
īƒ’ The Gantt chart is:
īƒ’ Typically, higher average turnaround than SJF, but
better response.
P1 P2 P3 P4 P1 P3 P4 P1 P3 P3
0 20 37 57 77 97 117 121 134 154 162
MULTILEVEL QUEUE
īƒ’ Ready queue is partitioned into separate queues:
foreground (interactive)
background (batch)
īƒ’ Each queue has its own scheduling algorithm,
foreground – RR
background – FCFS
īƒ’ Scheduling must be done between the queues.
īƒ‰ Fixed priority scheduling; (i.e., serve all from foreground then from
background). Possibility of starvation.
īƒ‰ Time slice – each queue gets a certain amount of CPU time which
it can schedule amongst its processes; i.e., 80% to foreground in
RR
īƒ‰ 20% to background in FCFS
MULTIPLE-PROCESSOR SCHEDULING
īƒ’ CPU scheduling more complex when multiple
CPUs are available.
īƒ’ Homogeneous processors within a
multiprocessor.
īƒ’ Load sharing
īƒ’ Asymmetric multiprocessing – only one
processor accesses the system data structures,
alleviating the need for data sharing.
REAL-TIME SCHEDULING
īƒ’ Hard real-time systems – required to complete
a critical task within a guaranteed amount of
time.
īƒ’ Soft real-time computing – requires that critical
processes receive priority over less fortunate
ones.
DEADLOCKS
īƒ’ System Model
īƒ’ Deadlock Characterization
īƒ’ Methods for Handling Deadlocks
īƒ’ Deadlock Prevention
īƒ’ Deadlock Avoidance
īƒ’ Deadlock Detection
īƒ’ Recovery from Deadlock
īƒ’ Combined Approach to Deadlock Handling
THE DEADLOCK PROBLEM
īƒ’ A set of blocked processes each holding a resource and
waiting to acquire a resource held by another process in
the set.
īƒ’ Example
īƒ‰ System has 2 tape drives.
īƒ‰ P1 and P2 each hold one tape drive and each needs another
one.
īƒ’ Example
īƒ‰ semaphores A and B, initialized to 1
P0 P1
wait (A); wait(B)
wait (B); wait(A)
BRIDGE CROSSING EXAMPLE
īƒ’ Traffic only in one direction.
īƒ’ Each section of a bridge can be viewed as a
resource.
īƒ’ If a deadlock occurs, it can be resolved if one
car backs up (preempt resources and rollback).
īƒ’ Several cars may have to be backed up if a
deadlock occurs.
īƒ’ Starvation is possible.
SYSTEM MODEL
īƒ’ Resource types R1, R2, . . ., Rm
CPU cycles, memory space, I/O devices
īƒ’ Each resource type Ri has Wi instances.
īƒ’ Each process utilizes a resource as follows:
īƒ‰ request
īƒ‰ use
īƒ‰ release
DEADLOCK CHARACTERIZATION
īƒ’ Mutual exclusion: only one process at a time
can use a resource.
īƒ’ Hold and wait: a process holding at least one
resource is waiting to acquire additional
resources held by other processes.
īƒ’ No preemption: a resource can be released
only voluntarily by the process holding it, after
that process has completed its task.
īƒ’ Circular wait: there exists a set {P0, P1, â€Ļ, P0}
of waiting processes such that P0 is waiting for
a resource that is held by P1, P1 is waiting for a
resource that is held by P2, â€Ļ, Pn–1 is waiting
for a resource that is held by Pn, and P0 is
waiting for a resource that is held by P0.
Deadlock can arise if four conditions hold simultaneously.
RESOURCE-ALLOCATION GRAPH
īƒ’ V is partitioned into two types:
īƒ‰ P = {P1, P2, â€Ļ, Pn}, the set consisting of all the
processes in the system.
R = {R1, R2, â€Ļ, Rm}, the set consisting of all
resource types in the system.
īƒ’ request edge – directed edge Pi ī‚Ž Rj
īƒ’ assignment edge – directed edge Rj ī‚Ž Pi
A set of vertices V and a set of edges E.
RESOURCE-ALLOCATION GRAPH (CONT.)
īƒ’ Process
īƒ’ Resource Type with 4 instances
īƒ’ Pi requests instance of Rj
īƒ’ Pi is holding an instance of Rj
Pi
Pi
Rj
Rj
EXAMPLE OF A RESOURCE ALLOCATION GRAPH
RESOURCE ALLOCATION GRAPH WITH A DEADLOCK
RESOURCE ALLOCATION GRAPH WITH A CYCLE BUT NO DEADLOCK
BASIC FACTS
īƒ’ If graph contains no cycles īƒž no deadlock.
īƒ’ If graph contains a cycle īƒž
īƒ‰ if only one instance per resource type, then
deadlock.
īƒ‰ if several instances per resource type, possibility of
deadlock.
METHODS FOR HANDLING DEADLOCKS
īƒ’ Ensure that the system will never enter a
deadlock state.
īƒ’ Allow the system to enter a deadlock state and
then recover.
īƒ’ Ignore the problem and pretend that deadlocks
never occur in the system; used by most
operating systems, including UNIX.
DEADLOCK PREVENTION
īƒ’ Mutual Exclusion – not required for sharable
resources; must hold for nonsharable resources.
īƒ’ Hold and Wait – must guarantee that whenever a
process requests a resource, it does not hold any
other resources.
īƒ‰ Require process to request and be allocated all its
resources before it begins execution, or allow process
to request resources only when the process has none.
īƒ‰ Low resource utilization; starvation possible.
Restrain the ways request can be made.
DEADLOCK PREVENTION (CONT.)
īƒ’ No Preemption –
īƒ‰ If a process that is holding some resources requests
another resource that cannot be immediately allocated to it,
then all resources currently being held are released.
īƒ‰ Preempted resources are added to the list of resources for
which the process is waiting.
īƒ‰ Process will be restarted only when it can regain its old
resources, as well as the new ones that it is requesting.
īƒ’ Circular Wait – impose a total ordering of all resource
types, and require that each process requests resources
in an increasing order of enumeration.
DEADLOCK AVOIDANCE
īƒ’ Simplest and most useful model requires that
each process declare the maximum number of
resources of each type that it may need.
īƒ’ The deadlock-avoidance algorithm dynamically
examines the resource-allocation state to
ensure that there can never be a circular-wait
condition.
īƒ’ Resource-allocation state is defined by the
number of available and allocated resources,
and the maximum demands of the processes.
Requires that the system has some additional a priori information
available.
SAFE STATE
īƒ’ When a process requests an available resource, system must
decide if immediate allocation leaves the system in a safe
state.
īƒ’ System is in safe state if there exists a safe sequence of all
processes.
īƒ’ Sequence <P1, P2, â€Ļ, Pn> is safe if for each Pi, the resources
that Pi can still request can be satisfied by currently available
resources + resources held by all the Pj, with j<I.
īƒ‰ If Pi resource needs are not immediately available, then Pi can wait
until all Pj have finished.
īƒ‰ When Pj is finished, Pi can obtain needed resources, execute, return
allocated resources, and terminate.
īƒ‰ When Pi terminates, Pi+1 can obtain its needed resources, and so on.
BASIC FACTS
īƒ’ If a system is in safe state īƒž no deadlocks.
īƒ’ If a system is in unsafe state īƒž possibility of
deadlock.
īƒ’ Avoidance īƒž ensure that a system will never
enter an unsafe state.
SAFE, UNSAFE , DEADLOCK STATE
MEMORY MANAGEMENT
īƒ’ Background
īƒ’ Swapping
īƒ’ Contiguous Allocation
īƒ’ Paging
īƒ’ Segmentation
īƒ’ Segmentation with Paging
BACKGROUND
īƒ’ Program must be brought into memory and
placed within a process for it to be run.
īƒ’ Input queue – collection of processes on the
disk that are waiting to be brought into memory
to run the program.
īƒ’ User programs go through several steps before
being run.
BINDING OF INSTRUCTIONS AND DATA TO MEMORY
īƒ’ Compile time: If memory location known a
priori, absolute code can be generated; must
recompile code if starting location changes.
īƒ’ Load time: Must generate relocatable code if
memory location is not known at compile
time.
īƒ’ Execution time: Binding delayed until run
time if the process can be moved during its
execution from one memory segment to
another. Need hardware support for address
maps (e.g., base and limit registers).
Address binding of instructions and data to memory addresses can
happen at three different stages.
MULTISTEP PROCESSING OF A USER PROGRAM
LOGICAL VS. PHYSICAL ADDRESS SPACE
īƒ’ The concept of a logical address space that is
bound to a separate physical address space is
central to proper memory management.
īƒ‰ Logical address – generated by the CPU; also referred
to as virtual address.
īƒ‰ Physical address – address seen by the memory unit.
īƒ’ Logical and physical addresses are the same in
compile-time and load-time address-binding
schemes; logical (virtual) and physical addresses
differ in execution-time address-binding scheme.
MEMORY-MANAGEMENT UNIT (MMU)
īƒ’ Hardware device that maps virtual to physical
address.
īƒ’ In MMU scheme, the value in the relocation
register is added to every address generated by
a user process at the time it is sent to memory.
īƒ’ The user program deals with logical addresses;
it never sees the real physical addresses.
DYNAMIC RELOCATION USING A RELOCATION REGISTER
DYNAMIC LOADING
īƒ’ Routine is not loaded until it is called
īƒ’ Better memory-space utilization; unused
routine is never loaded.
īƒ’ Useful when large amounts of code are needed
to handle infrequently occurring cases.
īƒ’ No special support from the operating system
is required implemented through program
design.
DYNAMIC LINKING
īƒ’ Linking postponed until execution time.
īƒ’ Small piece of code, stub, used to locate the
appropriate memory-resident library routine.
īƒ’ Stub replaces itself with the address of the
routine, and executes the routine.
īƒ’ Operating system needed to check if routine is
in process’s memory address.
īƒ’ Dynamic linking is particularly useful for
libraries.
OVERLAYS
īƒ’ Keep in memory only those instructions and
data that are needed at any given time.
īƒ’ Needed when process is larger than amount of
memory allocated to it.
īƒ’ Implemented by user, no special support
needed from operating system, programming
design of overlay structure is complex
OVERLAYS FOR A TWO-PASS ASSEMBLER
SWAPPING
īƒ’ A process can be swapped temporarily out of memory to a backing store,
and then brought back into memory for continued execution.
īƒ’ Backing store – fast disk large enough to accommodate copies of all
memory images for all users; must provide direct access to these memory
images.
īƒ’ Roll out, roll in – swapping variant used for priority-based scheduling
algorithms; lower-priority process is swapped out so higher-priority process
can be loaded and executed.
īƒ’ Major part of swap time is transfer time; total transfer time is directly
proportional to the amount of memory swapped.
īƒ’ Modified versions of swapping are found on many systems, i.e., UNIX, Linux,
and Windows.
SCHEMATIC VIEW OF SWAPPING
CONTIGUOUS ALLOCATION
īƒ’ Main memory usually into two partitions:
īƒ‰ Resident operating system, usually held in low memory with
interrupt vector.
īƒ‰ User processes then held in high memory.
īƒ’ Single-partition allocation
īƒ‰ Relocation-register scheme used to protect user processes
from each other, and from changing operating-system code
and data.
īƒ‰ Relocation register contains value of smallest physical
address; limit register contains range of logical addresses –
each logical address must be less than the limit register.
HARDWARE SUPPORT FOR RELOCATION AND LIMIT REGISTERS
CONTIGUOUS ALLOCATION (CONT.)
īƒ’ Multiple-partition allocation
īƒ‰ Hole – block of available memory; holes of various
size are scattered throughout memory.
īƒ‰ When a process arrives, it is allocated memory from
a hole large enough to accommodate it.
īƒ‰ Operating system maintains information about:
a) allocated partitions b) free partitions (hole)
OS
process 5
process 8
process 2
OS
process 5
process 2
OS
process 5
process 2
OS
process 5
process 9
process 2
process 9
process 10
DYNAMIC STORAGE-ALLOCATION PROBLEM
īƒ’ First-fit: Allocate the first hole that is big enough.
īƒ’ Best-fit: Allocate the smallest hole that is big
enough; must search entire list, unless ordered
by size. Produces the smallest leftover hole.
īƒ’ Worst-fit: Allocate the largest hole; must also
search entire list. Produces the largest leftover
hole.
How to satisfy a request of size n from a list of free holes.
First-fit and best-fit better than worst-fit in terms of speed
and storage utilization.
FRAGMENTATION
īƒ’ External Fragmentation – total memory space exists
to satisfy a request, but it is not contiguous.
īƒ’ Internal Fragmentation – allocated memory may be
slightly larger than requested memory; this size
difference is memory internal to a partition, but not
being used.
īƒ’ Reduce external fragmentation by compaction
īƒ‰ Shuffle memory contents to place all free memory together
in one large block.
īƒ‰ Compaction is possible only if relocation is dynamic, and is
done at execution time.
īƒ‰ I/O problem
īƒ Latch job in memory while it is involved in I/O.
īƒ Do I/O only into OS buffers.
PAGING
īƒ’ Logical address space of a process can be noncontiguous;
process is allocated physical memory whenever the latter is
available.
īƒ’ Divide physical memory into fixed-sized blocks called frames
(size is power of 2, between 512 bytes and 8192 bytes).
īƒ’ Divide logical memory into blocks of same size called pages.
īƒ’ Keep track of all free frames.
īƒ’ To run a program of size n pages, need to find n free frames and
load program.
īƒ’ Set up a page table to translate logical to physical addresses.
ADDRESS TRANSLATION SCHEME
īƒ’ Address generated by CPU is divided into:
īƒ‰ Page number (p) – used as an index into a page
table which contains base address of each page in
physical memory.
īƒ‰ Page offset (d) – combined with base address to
define the physical memory address that is sent to
the memory unit.
ADDRESS TRANSLATION ARCHITECTURE
Logical address Space=2m
Page Size = 2n
m-n īƒ page number
Nīƒ  page offset
PAGING EXAMPLE
PAGING EXAMPLE
n=2, m=4;
Logical address 0 īƒ Page 0, offset 0
Page 0 in frame 5īƒ  logical address 0
maps to physical address 20(5*4+0)
FREE FRAMES
Before allocation After allocation
IMPLEMENTATION OF PAGE TABLE
īƒ’ Page table is kept in main memory.
īƒ’ Page-table base register (PTBR) points to the page table.
īƒ’ Page-table length register (PRLR) indicates size of the
page table.
īƒ’ In this scheme every data/instruction access requires
two memory accesses. One for the page table and one
for the data/instruction.
īƒ’ The two memory access problem can be solved by the
use of a special fast-lookup hardware cache called
associative memory or translation look-aside buffers
(TLBs)
ASSOCIATIVE MEMORY
īƒ’ Associative memory – parallel search
Address translation (A´, A´´)
īƒ‰ If A´ is in associative register, get frame # out.
īƒ‰ Otherwise get frame # from page table in memory
Page # Frame #
PAGING HARDWARE WITH TLB
EFFECTIVE ACCESS TIME
īƒ’ Associative Lookup = īĨ time unit
īƒ’ Assume memory cycle time is 1 microsecond
īƒ’ Hit ratio – percentage of times that a page number
is found in the associative registers; ratio related
to number of associative registers.
īƒ’ Hit ratio = īĄ
īƒ’ Effective Access Time (EAT)
EAT = (1 + īĨ) īĄ + (2 + īĨ)(1 – īĄ)
= 2 + īĨ – īĄ
MEMORY PROTECTION
īƒ’ Memory protection implemented by associating
protection bit with each frame.
īƒ’ Valid-invalid bit attached to each entry in the
page table:
īƒ‰ ―valid‖ indicates that the associated page is in the
process’ logical address space, and is thus a legal
page.
īƒ‰ ―invalid‖ indicates that the page is not in the
process’ logical address space.
VALID (V) OR INVALID (I) BIT IN A PAGE TABLE
PAGE TABLE STRUCTURE
īƒ’ Hierarchical Paging
īƒ’ Hashed Page Tables
īƒ’ Inverted Page Tables
HIERARCHICAL PAGE TABLES
īƒ’ Break up the logical address space into
multiple page tables.
īƒ’ A simple technique is a two-level page table.
TWO-LEVEL PAGING EXAMPLE
īƒ’ A logical address (on 32-bit machine with 4K page size) is divided into:
īƒ‰ a page number consisting of 20 bits.
īƒ‰ a page offset consisting of 12 bits.
īƒ’ Since the page table is paged, the page number is further divided into:
īƒ‰ a 10-bit page number.
īƒ‰ a 10-bit page offset.
īƒ’ Thus, a logical address is as follows:
īƒ’
where pi is an index into the outer page table, and p2 is the displacement within the page
of the outer page table.
page number page offset
pi p2 d
10 10 12
TWO-LEVEL PAGE-TABLE SCHEME
ADDRESS-TRANSLATION SCHEME
īƒ’ Address-translation scheme for a two-
level 32-bit paging architecture
HASHED PAGE TABLES
īƒ’ Common in address spaces > 32 bits.
īƒ’ The virtual page number is hashed into a page
table. This page table contains a chain of
elements hashing to the same location.
īƒ’ Virtual page numbers are compared in this chain
searching for a match. If a match is found, the
corresponding physical frame is extracted.
HASHED PAGE TABLE
INVERTED PAGE TABLE
īƒ’ One entry for each real page of memory.
īƒ’ Entry consists of the virtual address of the page
stored in that real memory location, with
information about the process that owns that
page.
īƒ’ Decreases memory needed to store each page
table, but increases time needed to search the
table when a page reference occurs.
īƒ’ Use hash table to limit the search to one — or at
most a few — page-table entries.
INVERTED PAGE TABLE ARCHITECTURE
SHARED PAGES
īƒ’ Shared code
īƒ‰ One copy of read-only (reentrant) code shared among
processes (i.e., text editors, compilers, window
systems).
īƒ‰ Shared code must appear in same location in the
logical address space of all processes.
īƒ’ Private code and data
īƒ‰ Each process keeps a separate copy of the code and
data.
īƒ‰ The pages for the private code and data can appear
anywhere in the logical address space.
SEGMENTATION
īƒ’ Memory-management scheme that supports user view of
memory.
īƒ’ A program is a collection of segments. A segment is a logical
unit such as:
main program,
procedure,
function,
method,
object,
local variables, global variables,
common block,
stack,
symbol table, arrays
USER’S VIEW OF A PROGRAM
LOGICAL VIEW OF SEGMENTATION
1
3
2
4
1
4
2
3
user space physical memory space
SEGMENTATION ARCHITECTURE
īƒ’ Logical address consists of a two tuple:
<segment-number, offset>,
īƒ’ Segment table – maps two-dimensional physical
addresses; each table entry has:
īƒ‰ base – contains the starting physical address where the
segments reside in memory.
īƒ‰ limit – specifies the length of the segment.
īƒ’ Segment-table base register (STBR) points to the
segment table’s location in memory.
īƒ’ Segment-table length register (STLR) indicates number
of segments used by a program;
segment number s is legal if s < STLR.
SEGMENTATION ARCHITECTURE (CONT.)
īƒ’ Relocation.
īƒ‰ dynamic
īƒ‰ by segment table
īƒ’ Sharing.
īƒ‰ shared segments
īƒ‰ same segment number
īƒ’ Allocation.
īƒ‰ first fit/best fit
īƒ‰ external fragmentation
SEGMENTATION ARCHITECTURE (CONT.)
īƒ’ Protection. With each entry in segment table
associate:
īƒ‰ validation bit = 0 īƒž illegal segment
īƒ‰ read/write/execute privileges
īƒ’ Protection bits associated with segments; code
sharing occurs at segment level.
īƒ’ Since segments vary in length, memory allocation
is a dynamic storage-allocation problem.
īƒ’ A segmentation example is shown in the following
diagram
SEGMENTATION HARDWARE
EXAMPLE OF SEGMENTATION
SHARING OF SEGMENTS

Weitere ähnliche Inhalte

Was ist angesagt?

Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating SystemsPawandeep Kaur
 
dos mutual exclusion algos
dos mutual exclusion algosdos mutual exclusion algos
dos mutual exclusion algosAkhil Sharma
 
Components in real time systems
Components in real time systemsComponents in real time systems
Components in real time systemsSaransh Garg
 
Introduction to Real-Time Operating Systems
Introduction to Real-Time Operating SystemsIntroduction to Real-Time Operating Systems
Introduction to Real-Time Operating Systemscoolmirza143
 
Clock Synchronization in Distributed Systems
Clock Synchronization in Distributed SystemsClock Synchronization in Distributed Systems
Clock Synchronization in Distributed SystemsZbigniew Jerzak
 
Real-Time Scheduling Algorithms
Real-Time Scheduling AlgorithmsReal-Time Scheduling Algorithms
Real-Time Scheduling AlgorithmsAJAL A J
 
CS9222 ADVANCED OPERATING SYSTEMS
CS9222 ADVANCED OPERATING SYSTEMSCS9222 ADVANCED OPERATING SYSTEMS
CS9222 ADVANCED OPERATING SYSTEMSKathirvel Ayyaswamy
 
Distributed process and scheduling
Distributed process and scheduling Distributed process and scheduling
Distributed process and scheduling SHATHAN
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating SystemsRohit Joshi
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating SystemsMurtadha Alsabbagh
 
Real time operating system
Real time operating systemReal time operating system
Real time operating systemKhuram Shahzad
 
Chapter 18 - Distributed Coordination
Chapter 18 - Distributed CoordinationChapter 18 - Distributed Coordination
Chapter 18 - Distributed CoordinationWayne Jones Jnr
 
REAL TIME OPERATING SYSTEM
REAL TIME OPERATING SYSTEMREAL TIME OPERATING SYSTEM
REAL TIME OPERATING SYSTEMprakrutijsh
 
Rtos concepts
Rtos conceptsRtos concepts
Rtos conceptsanishgoel
 
Process Migration in Heterogeneous Systems
Process Migration in Heterogeneous SystemsProcess Migration in Heterogeneous Systems
Process Migration in Heterogeneous Systemsijsrd.com
 

Was ist angesagt? (20)

Process
ProcessProcess
Process
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating Systems
 
dos mutual exclusion algos
dos mutual exclusion algosdos mutual exclusion algos
dos mutual exclusion algos
 
Components in real time systems
Components in real time systemsComponents in real time systems
Components in real time systems
 
Introduction to Real-Time Operating Systems
Introduction to Real-Time Operating SystemsIntroduction to Real-Time Operating Systems
Introduction to Real-Time Operating Systems
 
Clock Synchronization in Distributed Systems
Clock Synchronization in Distributed SystemsClock Synchronization in Distributed Systems
Clock Synchronization in Distributed Systems
 
Real-Time Scheduling Algorithms
Real-Time Scheduling AlgorithmsReal-Time Scheduling Algorithms
Real-Time Scheduling Algorithms
 
CS9222 ADVANCED OPERATING SYSTEMS
CS9222 ADVANCED OPERATING SYSTEMSCS9222 ADVANCED OPERATING SYSTEMS
CS9222 ADVANCED OPERATING SYSTEMS
 
Distributed process and scheduling
Distributed process and scheduling Distributed process and scheduling
Distributed process and scheduling
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating Systems
 
RTOS
RTOSRTOS
RTOS
 
RTOS
RTOSRTOS
RTOS
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating Systems
 
Real time operating system
Real time operating systemReal time operating system
Real time operating system
 
Chapter 18 - Distributed Coordination
Chapter 18 - Distributed CoordinationChapter 18 - Distributed Coordination
Chapter 18 - Distributed Coordination
 
REAL TIME OPERATING SYSTEM
REAL TIME OPERATING SYSTEMREAL TIME OPERATING SYSTEM
REAL TIME OPERATING SYSTEM
 
Rtos Concepts
Rtos ConceptsRtos Concepts
Rtos Concepts
 
Rtos concepts
Rtos conceptsRtos concepts
Rtos concepts
 
Real time-embedded-system-lec-02
Real time-embedded-system-lec-02Real time-embedded-system-lec-02
Real time-embedded-system-lec-02
 
Process Migration in Heterogeneous Systems
Process Migration in Heterogeneous SystemsProcess Migration in Heterogeneous Systems
Process Migration in Heterogeneous Systems
 

Andere mochten auch

Information Systems Security: An Overview
Information Systems Security: An OverviewInformation Systems Security: An Overview
Information Systems Security: An OverviewApostolos Syropoulos
 
RO impact of excessive computer use on global health state
RO impact of excessive computer use on global health stateRO impact of excessive computer use on global health state
RO impact of excessive computer use on global health stateApostolos Syropoulos
 
Turing machine-TOC
Turing machine-TOCTuring machine-TOC
Turing machine-TOCMaulik Togadiya
 
Java history, versions, types of errors and exception, quiz
Java history, versions, types of errors and exception, quiz Java history, versions, types of errors and exception, quiz
Java history, versions, types of errors and exception, quiz SAurabh PRajapati
 
6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRFDr Sandeep Kumar Poonia
 
Distributed file system
Distributed file systemDistributed file system
Distributed file systemAnamika Singh
 
RO internet impact on child and adolescent brain
RO internet impact on child and adolescent brainRO internet impact on child and adolescent brain
RO internet impact on child and adolescent brainApostolos Syropoulos
 
Multiple Access in wireless communication
Multiple Access in wireless communicationMultiple Access in wireless communication
Multiple Access in wireless communicationMaulik Togadiya
 

Andere mochten auch (20)

Distributed Operating System_4
Distributed Operating System_4Distributed Operating System_4
Distributed Operating System_4
 
Distributed Operating System_1
Distributed Operating System_1Distributed Operating System_1
Distributed Operating System_1
 
An Overview of Social Media
An Overview of Social MediaAn Overview of Social Media
An Overview of Social Media
 
Distributed Operating System_3
Distributed Operating System_3Distributed Operating System_3
Distributed Operating System_3
 
Information Systems Security: An Overview
Information Systems Security: An OverviewInformation Systems Security: An Overview
Information Systems Security: An Overview
 
Fuzzy Topological Systems
Fuzzy Topological SystemsFuzzy Topological Systems
Fuzzy Topological Systems
 
RO impact of excessive computer use on global health state
RO impact of excessive computer use on global health stateRO impact of excessive computer use on global health state
RO impact of excessive computer use on global health state
 
Turing machine-TOC
Turing machine-TOCTuring machine-TOC
Turing machine-TOC
 
Ip sec
Ip secIp sec
Ip sec
 
Java history, versions, types of errors and exception, quiz
Java history, versions, types of errors and exception, quiz Java history, versions, types of errors and exception, quiz
Java history, versions, types of errors and exception, quiz
 
remote sensor
remote sensorremote sensor
remote sensor
 
Data mining
Data miningData mining
Data mining
 
12. dfs
12. dfs12. dfs
12. dfs
 
Web Introduction
Web IntroductionWeb Introduction
Web Introduction
 
6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF
 
Distributed file system
Distributed file systemDistributed file system
Distributed file system
 
Lecture28 tsp
Lecture28 tspLecture28 tsp
Lecture28 tsp
 
RO internet impact on child and adolescent brain
RO internet impact on child and adolescent brainRO internet impact on child and adolescent brain
RO internet impact on child and adolescent brain
 
Multiple Access in wireless communication
Multiple Access in wireless communicationMultiple Access in wireless communication
Multiple Access in wireless communication
 
Ccleaner presentation
Ccleaner presentationCcleaner presentation
Ccleaner presentation
 

Ähnlich wie Distributed Operating System_2

Ch6
Ch6Ch6
Ch6C.U
 
Operating System Scheduling
Operating System SchedulingOperating System Scheduling
Operating System SchedulingVishnu Prasad
 
Process management in os
Process management in osProcess management in os
Process management in osMiong Lazaro
 
Operating System 5
Operating System 5Operating System 5
Operating System 5tech2click
 
CPU SCHEDULING AND DEADLOCK
CPU SCHEDULING AND	DEADLOCKCPU SCHEDULING AND	DEADLOCK
CPU SCHEDULING AND DEADLOCKVicky Kumar
 
Window scheduling algorithm
Window scheduling algorithmWindow scheduling algorithm
Window scheduling algorithmBinal Parekh
 
Csc4320 chapter 5 2
Csc4320 chapter 5 2Csc4320 chapter 5 2
Csc4320 chapter 5 2pri534
 
Scheduling algorithms
Scheduling algorithmsScheduling algorithms
Scheduling algorithmsChankey Pathak
 
Os..
Os..Os..
Os..pri534
 
cpu sechduling
cpu sechduling cpu sechduling
cpu sechduling gopi7
 
CPU Scheduling
CPU SchedulingCPU Scheduling
CPU Schedulingsammerkhan1
 
Scheduling algo(by HJ)
Scheduling algo(by HJ)Scheduling algo(by HJ)
Scheduling algo(by HJ)Harshit Jain
 
Cpu Scheduling Galvin
Cpu Scheduling GalvinCpu Scheduling Galvin
Cpu Scheduling GalvinSonali Chauhan
 
Unit iios process scheduling and synchronization
Unit iios process scheduling and synchronizationUnit iios process scheduling and synchronization
Unit iios process scheduling and synchronizationdonny101
 
chapter 5 CPU scheduling.ppt
chapter  5 CPU scheduling.pptchapter  5 CPU scheduling.ppt
chapter 5 CPU scheduling.pptKeyreSebre
 

Ähnlich wie Distributed Operating System_2 (20)

Ch6
Ch6Ch6
Ch6
 
Operating System Scheduling
Operating System SchedulingOperating System Scheduling
Operating System Scheduling
 
Process management in os
Process management in osProcess management in os
Process management in os
 
Ch5
Ch5Ch5
Ch5
 
Operating System 5
Operating System 5Operating System 5
Operating System 5
 
OSCh6
OSCh6OSCh6
OSCh6
 
OS_Ch6
OS_Ch6OS_Ch6
OS_Ch6
 
CPU SCHEDULING AND DEADLOCK
CPU SCHEDULING AND	DEADLOCKCPU SCHEDULING AND	DEADLOCK
CPU SCHEDULING AND DEADLOCK
 
Window scheduling algorithm
Window scheduling algorithmWindow scheduling algorithm
Window scheduling algorithm
 
Csc4320 chapter 5 2
Csc4320 chapter 5 2Csc4320 chapter 5 2
Csc4320 chapter 5 2
 
Scheduling algorithms
Scheduling algorithmsScheduling algorithms
Scheduling algorithms
 
Os..
Os..Os..
Os..
 
Ch05
Ch05Ch05
Ch05
 
cpu sechduling
cpu sechduling cpu sechduling
cpu sechduling
 
CH06.pdf
CH06.pdfCH06.pdf
CH06.pdf
 
CPU Scheduling
CPU SchedulingCPU Scheduling
CPU Scheduling
 
Scheduling algo(by HJ)
Scheduling algo(by HJ)Scheduling algo(by HJ)
Scheduling algo(by HJ)
 
Cpu Scheduling Galvin
Cpu Scheduling GalvinCpu Scheduling Galvin
Cpu Scheduling Galvin
 
Unit iios process scheduling and synchronization
Unit iios process scheduling and synchronizationUnit iios process scheduling and synchronization
Unit iios process scheduling and synchronization
 
chapter 5 CPU scheduling.ppt
chapter  5 CPU scheduling.pptchapter  5 CPU scheduling.ppt
chapter 5 CPU scheduling.ppt
 

Mehr von Dr Sandeep Kumar Poonia

An improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithmAn improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithmDr Sandeep Kumar Poonia
 
Modified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithmModified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithmDr Sandeep Kumar Poonia
 
Enhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithmEnhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithmDr Sandeep Kumar Poonia
 
Memetic search in differential evolution algorithm
Memetic search in differential evolution algorithmMemetic search in differential evolution algorithm
Memetic search in differential evolution algorithmDr Sandeep Kumar Poonia
 
Improved onlooker bee phase in artificial bee colony algorithm
Improved onlooker bee phase in artificial bee colony algorithmImproved onlooker bee phase in artificial bee colony algorithm
Improved onlooker bee phase in artificial bee colony algorithmDr Sandeep Kumar Poonia
 
Comparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithmComparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithmDr Sandeep Kumar Poonia
 
A novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithmA novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithmDr Sandeep Kumar Poonia
 
Multiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked listsMultiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked listsDr Sandeep Kumar Poonia
 
Sunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithmSunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithmDr Sandeep Kumar Poonia
 
New Local Search Strategy in Artificial Bee Colony Algorithm
New Local Search Strategy in Artificial Bee Colony Algorithm New Local Search Strategy in Artificial Bee Colony Algorithm
New Local Search Strategy in Artificial Bee Colony Algorithm Dr Sandeep Kumar Poonia
 
Performance evaluation of different routing protocols in wsn using different ...
Performance evaluation of different routing protocols in wsn using different ...Performance evaluation of different routing protocols in wsn using different ...
Performance evaluation of different routing protocols in wsn using different ...Dr Sandeep Kumar Poonia
 
Database aggregation using metadata
Database aggregation using metadataDatabase aggregation using metadata
Database aggregation using metadataDr Sandeep Kumar Poonia
 
Performance evaluation of diff routing protocols in wsn using difft network p...
Performance evaluation of diff routing protocols in wsn using difft network p...Performance evaluation of diff routing protocols in wsn using difft network p...
Performance evaluation of diff routing protocols in wsn using difft network p...Dr Sandeep Kumar Poonia
 

Mehr von Dr Sandeep Kumar Poonia (20)

Soft computing
Soft computingSoft computing
Soft computing
 
An improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithmAn improved memetic search in artificial bee colony algorithm
An improved memetic search in artificial bee colony algorithm
 
Modified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithmModified position update in spider monkey optimization algorithm
Modified position update in spider monkey optimization algorithm
 
Enhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithmEnhanced local search in artificial bee colony algorithm
Enhanced local search in artificial bee colony algorithm
 
RMABC
RMABCRMABC
RMABC
 
Memetic search in differential evolution algorithm
Memetic search in differential evolution algorithmMemetic search in differential evolution algorithm
Memetic search in differential evolution algorithm
 
Improved onlooker bee phase in artificial bee colony algorithm
Improved onlooker bee phase in artificial bee colony algorithmImproved onlooker bee phase in artificial bee colony algorithm
Improved onlooker bee phase in artificial bee colony algorithm
 
Comparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithmComparative study of_hybrids_of_artificial_bee_colony_algorithm
Comparative study of_hybrids_of_artificial_bee_colony_algorithm
 
A novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithmA novel hybrid crossover based abc algorithm
A novel hybrid crossover based abc algorithm
 
Multiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked listsMultiplication of two 3 d sparse matrices using 1d arrays and linked lists
Multiplication of two 3 d sparse matrices using 1d arrays and linked lists
 
Sunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithmSunzip user tool for data reduction using huffman algorithm
Sunzip user tool for data reduction using huffman algorithm
 
New Local Search Strategy in Artificial Bee Colony Algorithm
New Local Search Strategy in Artificial Bee Colony Algorithm New Local Search Strategy in Artificial Bee Colony Algorithm
New Local Search Strategy in Artificial Bee Colony Algorithm
 
A new approach of program slicing
A new approach of program slicingA new approach of program slicing
A new approach of program slicing
 
Performance evaluation of different routing protocols in wsn using different ...
Performance evaluation of different routing protocols in wsn using different ...Performance evaluation of different routing protocols in wsn using different ...
Performance evaluation of different routing protocols in wsn using different ...
 
Enhanced abc algo for tsp
Enhanced abc algo for tspEnhanced abc algo for tsp
Enhanced abc algo for tsp
 
Database aggregation using metadata
Database aggregation using metadataDatabase aggregation using metadata
Database aggregation using metadata
 
Performance evaluation of diff routing protocols in wsn using difft network p...
Performance evaluation of diff routing protocols in wsn using difft network p...Performance evaluation of diff routing protocols in wsn using difft network p...
Performance evaluation of diff routing protocols in wsn using difft network p...
 
Lecture27 linear programming
Lecture27 linear programmingLecture27 linear programming
Lecture27 linear programming
 
Lecture26
Lecture26Lecture26
Lecture26
 
Lecture25
Lecture25Lecture25
Lecture25
 

KÃŧrzlich hochgeladen

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Dr. Mazin Mohamed alkathiri
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 

KÃŧrzlich hochgeladen (20)

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 

Distributed Operating System_2

  • 1. DISTRIBUTED OPERATING SYSTEMS Sandeep Kumar Poonia Head Of Dept. CS/IT B.E., M.Tech., UGC-NET LM-IAENG, LM-IACSIT,LM-CSTA, LM-AIRCC, LM-SCIEI, AM-UACEE
  • 2. CPU SCHEDULING īƒ’ Basic Concepts īƒ’ Scheduling Criteria īƒ’ Scheduling Algorithms īƒ’ Multiple-Processor Scheduling īƒ’ Real-Time Scheduling īƒ’ Algorithm Evaluation
  • 3. BASIC CONCEPTS īƒ’ Maximum CPU utilization obtained with multiprogramming īƒ’ CPU–I/O Burst Cycle – Process execution consists of a cycle of CPU execution and I/O wait. īƒ’ CPU burst distribution
  • 4. CPU SCHEDULER īƒ’ Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. īƒ’ CPU scheduling decisions may take place when a process: 1.Switches from running to waiting state. 2.Switches from running to ready state. 3.Switches from waiting to ready. 4.Terminates. īƒ’ Scheduling under 1 and 4 is nonpreemptive. īƒ’ All other scheduling is preemptive.
  • 5. DISPATCHER īƒ’ Dispatcher module gives control of the CPU to the process selected by the short-term scheduler; this involves: īƒ‰ switching context īƒ‰ switching to user mode īƒ‰ jumping to the proper location in the user program to restart that program īƒ’ Dispatch latency – time it takes for the dispatcher to stop one process and start another running.
  • 6. SCHEDULING CRITERIA īƒ’ CPU utilization – keep the CPU as busy as possible īƒ’ Throughput – # of processes that complete their execution per time unit īƒ’ Turnaround time – amount of time to execute a particular process īƒ’ Waiting time – amount of time a process has been waiting in the ready queue īƒ’ Response time – amount of time it takes from when a request was submitted until the first response is produced, not output (for time-sharing environment)
  • 7. OPTIMIZATION CRITERIA īƒ’ Max CPU utilization īƒ’ Max throughput īƒ’ Min turnaround time īƒ’ Min waiting time īƒ’ Min response time
  • 8. FIRST-COME, FIRST-SERVED (FCFS) SCHEDULING Process Burst Time P1 24 P2 3 P3 3 īƒ’ Suppose that the processes arrive in the order: P1 , P2 , P3 The Gantt Chart for the schedule is: īƒ’ Waiting time for P1 = 0; P2 = 24; P3 = 27 īƒ’ Average waiting time: (0 + 24 + 27)/3 = 17 P1 P2 P3 24 27 300
  • 9. FCFS SCHEDULING (CONT.) Suppose that the processes arrive in the order P2 , P3 , P1 . īƒ’ The Gantt chart for the schedule is: īƒ’ Waiting time for P1 = 6; P2 = 0; P3 = 3 īƒ’ Average waiting time: (6 + 0 + 3)/3 = 3 īƒ’ Much better than previous case. īƒ’ Convoy effect short process behind long process P1P3P2 63 300
  • 10. SHORTEST-JOB-FIRST (SJR) SCHEDULING īƒ’ Associate with each process the length of its next CPU burst. Use these lengths to schedule the process with the shortest time. īƒ’ Two schemes: īƒ‰ nonpreemptive – once CPU given to the process it cannot be preempted until completes its CPU burst. īƒ‰ preemptive – if a new process arrives with CPU burst length less than remaining time of current executing process, preempt. This scheme is know as the Shortest-Remaining-Time-First (SRTF). īƒ’ SJF is optimal – gives minimum average waiting time for a given set of processes.
  • 11. Process Arrival Time Burst Time P1 0.0 7 P2 2.0 4 P3 4.0 1 P4 5.0 4 īƒ’ SJF (non-preemptive) īƒ’ Average waiting time = (0 + 6 + 3 + 7)/4 = 4 EXAMPLE OF NON-PREEMPTIVE SJF P1 P3 P2 73 160 P4 8 12
  • 12. EXAMPLE OF PREEMPTIVE SJF Process Arrival Time Burst Time P1 0.0 7 P2 2.0 4 P3 4.0 1 P4 5.0 4 īƒ’ SJF (preemptive) īƒ’ Average waiting time = (9 + 1 + 0 +2)/4 = 3 P1 P3P2 42 110 P4 5 7 P2 P1 16
  • 13. PRIORITY SCHEDULING īƒ’ A priority number (integer) is associated with each process īƒ’ The CPU is allocated to the process with the highest priority (smallest integer ī‚ē highest priority). īƒ‰ Preemptive īƒ‰ nonpreemptive īƒ’ SJF is a priority scheduling where priority is the predicted next CPU burst time. īƒ’ Problem ī‚ē Starvation – low priority processes may never execute. īƒ’ Solution ī‚ē Aging – as time progresses increase the priority of the process.
  • 14. ROUND ROBIN (RR) īƒ’ Each process gets a small unit of CPU time (time quantum), usually 10-100 milliseconds. After this time has elapsed, the process is preempted and added to the end of the ready queue. īƒ’ If there are n processes in the ready queue and the time quantum is q, then each process gets 1/n of the CPU time in chunks of at most q time units at once. No process waits more than (n-1)q time units. īƒ’ Performance īƒ‰ q large īƒž FIFO īƒ‰ q small īƒž q must be large with respect to context switch, otherwise overhead is too high.
  • 15. EXAMPLE OF RR WITH TIME QUANTUM = 20 Process Burst Time P1 53 P2 17 P3 68 P4 24 īƒ’ The Gantt chart is: īƒ’ Typically, higher average turnaround than SJF, but better response. P1 P2 P3 P4 P1 P3 P4 P1 P3 P3 0 20 37 57 77 97 117 121 134 154 162
  • 16. MULTILEVEL QUEUE īƒ’ Ready queue is partitioned into separate queues: foreground (interactive) background (batch) īƒ’ Each queue has its own scheduling algorithm, foreground – RR background – FCFS īƒ’ Scheduling must be done between the queues. īƒ‰ Fixed priority scheduling; (i.e., serve all from foreground then from background). Possibility of starvation. īƒ‰ Time slice – each queue gets a certain amount of CPU time which it can schedule amongst its processes; i.e., 80% to foreground in RR īƒ‰ 20% to background in FCFS
  • 17. MULTIPLE-PROCESSOR SCHEDULING īƒ’ CPU scheduling more complex when multiple CPUs are available. īƒ’ Homogeneous processors within a multiprocessor. īƒ’ Load sharing īƒ’ Asymmetric multiprocessing – only one processor accesses the system data structures, alleviating the need for data sharing.
  • 18. REAL-TIME SCHEDULING īƒ’ Hard real-time systems – required to complete a critical task within a guaranteed amount of time. īƒ’ Soft real-time computing – requires that critical processes receive priority over less fortunate ones.
  • 19. DEADLOCKS īƒ’ System Model īƒ’ Deadlock Characterization īƒ’ Methods for Handling Deadlocks īƒ’ Deadlock Prevention īƒ’ Deadlock Avoidance īƒ’ Deadlock Detection īƒ’ Recovery from Deadlock īƒ’ Combined Approach to Deadlock Handling
  • 20. THE DEADLOCK PROBLEM īƒ’ A set of blocked processes each holding a resource and waiting to acquire a resource held by another process in the set. īƒ’ Example īƒ‰ System has 2 tape drives. īƒ‰ P1 and P2 each hold one tape drive and each needs another one. īƒ’ Example īƒ‰ semaphores A and B, initialized to 1 P0 P1 wait (A); wait(B) wait (B); wait(A)
  • 21. BRIDGE CROSSING EXAMPLE īƒ’ Traffic only in one direction. īƒ’ Each section of a bridge can be viewed as a resource. īƒ’ If a deadlock occurs, it can be resolved if one car backs up (preempt resources and rollback). īƒ’ Several cars may have to be backed up if a deadlock occurs. īƒ’ Starvation is possible.
  • 22. SYSTEM MODEL īƒ’ Resource types R1, R2, . . ., Rm CPU cycles, memory space, I/O devices īƒ’ Each resource type Ri has Wi instances. īƒ’ Each process utilizes a resource as follows: īƒ‰ request īƒ‰ use īƒ‰ release
  • 23. DEADLOCK CHARACTERIZATION īƒ’ Mutual exclusion: only one process at a time can use a resource. īƒ’ Hold and wait: a process holding at least one resource is waiting to acquire additional resources held by other processes. īƒ’ No preemption: a resource can be released only voluntarily by the process holding it, after that process has completed its task. īƒ’ Circular wait: there exists a set {P0, P1, â€Ļ, P0} of waiting processes such that P0 is waiting for a resource that is held by P1, P1 is waiting for a resource that is held by P2, â€Ļ, Pn–1 is waiting for a resource that is held by Pn, and P0 is waiting for a resource that is held by P0. Deadlock can arise if four conditions hold simultaneously.
  • 24. RESOURCE-ALLOCATION GRAPH īƒ’ V is partitioned into two types: īƒ‰ P = {P1, P2, â€Ļ, Pn}, the set consisting of all the processes in the system. R = {R1, R2, â€Ļ, Rm}, the set consisting of all resource types in the system. īƒ’ request edge – directed edge Pi ī‚Ž Rj īƒ’ assignment edge – directed edge Rj ī‚Ž Pi A set of vertices V and a set of edges E.
  • 25. RESOURCE-ALLOCATION GRAPH (CONT.) īƒ’ Process īƒ’ Resource Type with 4 instances īƒ’ Pi requests instance of Rj īƒ’ Pi is holding an instance of Rj Pi Pi Rj Rj
  • 26. EXAMPLE OF A RESOURCE ALLOCATION GRAPH
  • 27. RESOURCE ALLOCATION GRAPH WITH A DEADLOCK
  • 28. RESOURCE ALLOCATION GRAPH WITH A CYCLE BUT NO DEADLOCK
  • 29. BASIC FACTS īƒ’ If graph contains no cycles īƒž no deadlock. īƒ’ If graph contains a cycle īƒž īƒ‰ if only one instance per resource type, then deadlock. īƒ‰ if several instances per resource type, possibility of deadlock.
  • 30. METHODS FOR HANDLING DEADLOCKS īƒ’ Ensure that the system will never enter a deadlock state. īƒ’ Allow the system to enter a deadlock state and then recover. īƒ’ Ignore the problem and pretend that deadlocks never occur in the system; used by most operating systems, including UNIX.
  • 31. DEADLOCK PREVENTION īƒ’ Mutual Exclusion – not required for sharable resources; must hold for nonsharable resources. īƒ’ Hold and Wait – must guarantee that whenever a process requests a resource, it does not hold any other resources. īƒ‰ Require process to request and be allocated all its resources before it begins execution, or allow process to request resources only when the process has none. īƒ‰ Low resource utilization; starvation possible. Restrain the ways request can be made.
  • 32. DEADLOCK PREVENTION (CONT.) īƒ’ No Preemption – īƒ‰ If a process that is holding some resources requests another resource that cannot be immediately allocated to it, then all resources currently being held are released. īƒ‰ Preempted resources are added to the list of resources for which the process is waiting. īƒ‰ Process will be restarted only when it can regain its old resources, as well as the new ones that it is requesting. īƒ’ Circular Wait – impose a total ordering of all resource types, and require that each process requests resources in an increasing order of enumeration.
  • 33. DEADLOCK AVOIDANCE īƒ’ Simplest and most useful model requires that each process declare the maximum number of resources of each type that it may need. īƒ’ The deadlock-avoidance algorithm dynamically examines the resource-allocation state to ensure that there can never be a circular-wait condition. īƒ’ Resource-allocation state is defined by the number of available and allocated resources, and the maximum demands of the processes. Requires that the system has some additional a priori information available.
  • 34. SAFE STATE īƒ’ When a process requests an available resource, system must decide if immediate allocation leaves the system in a safe state. īƒ’ System is in safe state if there exists a safe sequence of all processes. īƒ’ Sequence <P1, P2, â€Ļ, Pn> is safe if for each Pi, the resources that Pi can still request can be satisfied by currently available resources + resources held by all the Pj, with j<I. īƒ‰ If Pi resource needs are not immediately available, then Pi can wait until all Pj have finished. īƒ‰ When Pj is finished, Pi can obtain needed resources, execute, return allocated resources, and terminate. īƒ‰ When Pi terminates, Pi+1 can obtain its needed resources, and so on.
  • 35. BASIC FACTS īƒ’ If a system is in safe state īƒž no deadlocks. īƒ’ If a system is in unsafe state īƒž possibility of deadlock. īƒ’ Avoidance īƒž ensure that a system will never enter an unsafe state.
  • 36. SAFE, UNSAFE , DEADLOCK STATE
  • 37. MEMORY MANAGEMENT īƒ’ Background īƒ’ Swapping īƒ’ Contiguous Allocation īƒ’ Paging īƒ’ Segmentation īƒ’ Segmentation with Paging
  • 38. BACKGROUND īƒ’ Program must be brought into memory and placed within a process for it to be run. īƒ’ Input queue – collection of processes on the disk that are waiting to be brought into memory to run the program. īƒ’ User programs go through several steps before being run.
  • 39. BINDING OF INSTRUCTIONS AND DATA TO MEMORY īƒ’ Compile time: If memory location known a priori, absolute code can be generated; must recompile code if starting location changes. īƒ’ Load time: Must generate relocatable code if memory location is not known at compile time. īƒ’ Execution time: Binding delayed until run time if the process can be moved during its execution from one memory segment to another. Need hardware support for address maps (e.g., base and limit registers). Address binding of instructions and data to memory addresses can happen at three different stages.
  • 40. MULTISTEP PROCESSING OF A USER PROGRAM
  • 41. LOGICAL VS. PHYSICAL ADDRESS SPACE īƒ’ The concept of a logical address space that is bound to a separate physical address space is central to proper memory management. īƒ‰ Logical address – generated by the CPU; also referred to as virtual address. īƒ‰ Physical address – address seen by the memory unit. īƒ’ Logical and physical addresses are the same in compile-time and load-time address-binding schemes; logical (virtual) and physical addresses differ in execution-time address-binding scheme.
  • 42. MEMORY-MANAGEMENT UNIT (MMU) īƒ’ Hardware device that maps virtual to physical address. īƒ’ In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory. īƒ’ The user program deals with logical addresses; it never sees the real physical addresses.
  • 43. DYNAMIC RELOCATION USING A RELOCATION REGISTER
  • 44. DYNAMIC LOADING īƒ’ Routine is not loaded until it is called īƒ’ Better memory-space utilization; unused routine is never loaded. īƒ’ Useful when large amounts of code are needed to handle infrequently occurring cases. īƒ’ No special support from the operating system is required implemented through program design.
  • 45. DYNAMIC LINKING īƒ’ Linking postponed until execution time. īƒ’ Small piece of code, stub, used to locate the appropriate memory-resident library routine. īƒ’ Stub replaces itself with the address of the routine, and executes the routine. īƒ’ Operating system needed to check if routine is in process’s memory address. īƒ’ Dynamic linking is particularly useful for libraries.
  • 46. OVERLAYS īƒ’ Keep in memory only those instructions and data that are needed at any given time. īƒ’ Needed when process is larger than amount of memory allocated to it. īƒ’ Implemented by user, no special support needed from operating system, programming design of overlay structure is complex
  • 47. OVERLAYS FOR A TWO-PASS ASSEMBLER
  • 48. SWAPPING īƒ’ A process can be swapped temporarily out of memory to a backing store, and then brought back into memory for continued execution. īƒ’ Backing store – fast disk large enough to accommodate copies of all memory images for all users; must provide direct access to these memory images. īƒ’ Roll out, roll in – swapping variant used for priority-based scheduling algorithms; lower-priority process is swapped out so higher-priority process can be loaded and executed. īƒ’ Major part of swap time is transfer time; total transfer time is directly proportional to the amount of memory swapped. īƒ’ Modified versions of swapping are found on many systems, i.e., UNIX, Linux, and Windows.
  • 49. SCHEMATIC VIEW OF SWAPPING
  • 50. CONTIGUOUS ALLOCATION īƒ’ Main memory usually into two partitions: īƒ‰ Resident operating system, usually held in low memory with interrupt vector. īƒ‰ User processes then held in high memory. īƒ’ Single-partition allocation īƒ‰ Relocation-register scheme used to protect user processes from each other, and from changing operating-system code and data. īƒ‰ Relocation register contains value of smallest physical address; limit register contains range of logical addresses – each logical address must be less than the limit register.
  • 51. HARDWARE SUPPORT FOR RELOCATION AND LIMIT REGISTERS
  • 52. CONTIGUOUS ALLOCATION (CONT.) īƒ’ Multiple-partition allocation īƒ‰ Hole – block of available memory; holes of various size are scattered throughout memory. īƒ‰ When a process arrives, it is allocated memory from a hole large enough to accommodate it. īƒ‰ Operating system maintains information about: a) allocated partitions b) free partitions (hole) OS process 5 process 8 process 2 OS process 5 process 2 OS process 5 process 2 OS process 5 process 9 process 2 process 9 process 10
  • 53. DYNAMIC STORAGE-ALLOCATION PROBLEM īƒ’ First-fit: Allocate the first hole that is big enough. īƒ’ Best-fit: Allocate the smallest hole that is big enough; must search entire list, unless ordered by size. Produces the smallest leftover hole. īƒ’ Worst-fit: Allocate the largest hole; must also search entire list. Produces the largest leftover hole. How to satisfy a request of size n from a list of free holes. First-fit and best-fit better than worst-fit in terms of speed and storage utilization.
  • 54. FRAGMENTATION īƒ’ External Fragmentation – total memory space exists to satisfy a request, but it is not contiguous. īƒ’ Internal Fragmentation – allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used. īƒ’ Reduce external fragmentation by compaction īƒ‰ Shuffle memory contents to place all free memory together in one large block. īƒ‰ Compaction is possible only if relocation is dynamic, and is done at execution time. īƒ‰ I/O problem īƒ Latch job in memory while it is involved in I/O. īƒ Do I/O only into OS buffers.
  • 55. PAGING īƒ’ Logical address space of a process can be noncontiguous; process is allocated physical memory whenever the latter is available. īƒ’ Divide physical memory into fixed-sized blocks called frames (size is power of 2, between 512 bytes and 8192 bytes). īƒ’ Divide logical memory into blocks of same size called pages. īƒ’ Keep track of all free frames. īƒ’ To run a program of size n pages, need to find n free frames and load program. īƒ’ Set up a page table to translate logical to physical addresses.
  • 56. ADDRESS TRANSLATION SCHEME īƒ’ Address generated by CPU is divided into: īƒ‰ Page number (p) – used as an index into a page table which contains base address of each page in physical memory. īƒ‰ Page offset (d) – combined with base address to define the physical memory address that is sent to the memory unit.
  • 57. ADDRESS TRANSLATION ARCHITECTURE Logical address Space=2m Page Size = 2n m-n īƒ page number Nīƒ  page offset
  • 59. PAGING EXAMPLE n=2, m=4; Logical address 0 īƒ Page 0, offset 0 Page 0 in frame 5īƒ  logical address 0 maps to physical address 20(5*4+0)
  • 60. FREE FRAMES Before allocation After allocation
  • 61. IMPLEMENTATION OF PAGE TABLE īƒ’ Page table is kept in main memory. īƒ’ Page-table base register (PTBR) points to the page table. īƒ’ Page-table length register (PRLR) indicates size of the page table. īƒ’ In this scheme every data/instruction access requires two memory accesses. One for the page table and one for the data/instruction. īƒ’ The two memory access problem can be solved by the use of a special fast-lookup hardware cache called associative memory or translation look-aside buffers (TLBs)
  • 62. ASSOCIATIVE MEMORY īƒ’ Associative memory – parallel search Address translation (A´, A´´) īƒ‰ If A´ is in associative register, get frame # out. īƒ‰ Otherwise get frame # from page table in memory Page # Frame #
  • 64. EFFECTIVE ACCESS TIME īƒ’ Associative Lookup = īĨ time unit īƒ’ Assume memory cycle time is 1 microsecond īƒ’ Hit ratio – percentage of times that a page number is found in the associative registers; ratio related to number of associative registers. īƒ’ Hit ratio = īĄ īƒ’ Effective Access Time (EAT) EAT = (1 + īĨ) īĄ + (2 + īĨ)(1 – īĄ) = 2 + īĨ – īĄ
  • 65. MEMORY PROTECTION īƒ’ Memory protection implemented by associating protection bit with each frame. īƒ’ Valid-invalid bit attached to each entry in the page table: īƒ‰ ―valid‖ indicates that the associated page is in the process’ logical address space, and is thus a legal page. īƒ‰ ―invalid‖ indicates that the page is not in the process’ logical address space.
  • 66. VALID (V) OR INVALID (I) BIT IN A PAGE TABLE
  • 67. PAGE TABLE STRUCTURE īƒ’ Hierarchical Paging īƒ’ Hashed Page Tables īƒ’ Inverted Page Tables
  • 68. HIERARCHICAL PAGE TABLES īƒ’ Break up the logical address space into multiple page tables. īƒ’ A simple technique is a two-level page table.
  • 69. TWO-LEVEL PAGING EXAMPLE īƒ’ A logical address (on 32-bit machine with 4K page size) is divided into: īƒ‰ a page number consisting of 20 bits. īƒ‰ a page offset consisting of 12 bits. īƒ’ Since the page table is paged, the page number is further divided into: īƒ‰ a 10-bit page number. īƒ‰ a 10-bit page offset. īƒ’ Thus, a logical address is as follows: īƒ’ where pi is an index into the outer page table, and p2 is the displacement within the page of the outer page table. page number page offset pi p2 d 10 10 12
  • 71. ADDRESS-TRANSLATION SCHEME īƒ’ Address-translation scheme for a two- level 32-bit paging architecture
  • 72. HASHED PAGE TABLES īƒ’ Common in address spaces > 32 bits. īƒ’ The virtual page number is hashed into a page table. This page table contains a chain of elements hashing to the same location. īƒ’ Virtual page numbers are compared in this chain searching for a match. If a match is found, the corresponding physical frame is extracted.
  • 74. INVERTED PAGE TABLE īƒ’ One entry for each real page of memory. īƒ’ Entry consists of the virtual address of the page stored in that real memory location, with information about the process that owns that page. īƒ’ Decreases memory needed to store each page table, but increases time needed to search the table when a page reference occurs. īƒ’ Use hash table to limit the search to one — or at most a few — page-table entries.
  • 75. INVERTED PAGE TABLE ARCHITECTURE
  • 76. SHARED PAGES īƒ’ Shared code īƒ‰ One copy of read-only (reentrant) code shared among processes (i.e., text editors, compilers, window systems). īƒ‰ Shared code must appear in same location in the logical address space of all processes. īƒ’ Private code and data īƒ‰ Each process keeps a separate copy of the code and data. īƒ‰ The pages for the private code and data can appear anywhere in the logical address space.
  • 77. SEGMENTATION īƒ’ Memory-management scheme that supports user view of memory. īƒ’ A program is a collection of segments. A segment is a logical unit such as: main program, procedure, function, method, object, local variables, global variables, common block, stack, symbol table, arrays
  • 78. USER’S VIEW OF A PROGRAM
  • 79. LOGICAL VIEW OF SEGMENTATION 1 3 2 4 1 4 2 3 user space physical memory space
  • 80. SEGMENTATION ARCHITECTURE īƒ’ Logical address consists of a two tuple: <segment-number, offset>, īƒ’ Segment table – maps two-dimensional physical addresses; each table entry has: īƒ‰ base – contains the starting physical address where the segments reside in memory. īƒ‰ limit – specifies the length of the segment. īƒ’ Segment-table base register (STBR) points to the segment table’s location in memory. īƒ’ Segment-table length register (STLR) indicates number of segments used by a program; segment number s is legal if s < STLR.
  • 81. SEGMENTATION ARCHITECTURE (CONT.) īƒ’ Relocation. īƒ‰ dynamic īƒ‰ by segment table īƒ’ Sharing. īƒ‰ shared segments īƒ‰ same segment number īƒ’ Allocation. īƒ‰ first fit/best fit īƒ‰ external fragmentation
  • 82. SEGMENTATION ARCHITECTURE (CONT.) īƒ’ Protection. With each entry in segment table associate: īƒ‰ validation bit = 0 īƒž illegal segment īƒ‰ read/write/execute privileges īƒ’ Protection bits associated with segments; code sharing occurs at segment level. īƒ’ Since segments vary in length, memory allocation is a dynamic storage-allocation problem. īƒ’ A segmentation example is shown in the following diagram