SlideShare uma empresa Scribd logo
1 de 28
UNIT-II
Memory Management:
Early Systems
Introduction
• Management of main memory is critical.
• The performance of the entire system has been directly
dependent on two things:
• How much memory is available
• How it is optimization while jobs are being processed.
• This chapter introduces:
• The memory manager (RAM)
• Core memory (primary storage)
Introduction
• This chapter introduces:
• Four types of memory allocation schemes
• Single-user systems
• Fixed partitions
• Dynamic partitions
• Relocatable dynamic partitions
• These early memory management schemes are seldom
used by today’s OSs but are important to study because
each one introduced fundamental concepts that helped
memory management evolve.
Single-User Contiguous Scheme
• Commercially available in 1940s and 1950s
• Each program was loaded in its entirety into memory and
allocated as much contiguous memory space allocated as
it needed.
• If the program was too large and didn’t fit the
available memory space, it couldn’t be executed,
• Although early computers were physically large, they had
very little memory.
• Computers have only a finite amount of memory.
Single-User Contiguous Scheme
• If a program doesn’t fit, then either the size of the main
memory must be increased or the program must be
modified.
• Making it smaller
• Using methods that allow program segments
(partitions made to the program) to be overlaid.
• Transfer segments of a program from secondary
storage into main memory for execution
• Two or more segments take turns occupying the
same memory locations.
Memory Management
Concurrency
• A program cannot process data it does not have.
• A program spends more time waiting for I/O than
processing data.
Single-User Contiguous Scheme
• The amount of work performed by the Memory Manager is
minimal.
• Only two hardware items are needed:
• A register to store the base address
• An accumulator to keep track of the size of the program
as it’s being read into memory.
• Once the program is entirely loaded into memory, it
remains there until execution is complete, either through
normal termination or by intervention of the OS.
Single-User Contiguous Scheme
(cont'd.)
• Disadvantages
• There is no support for multiprogramming or networking
• It can handle only one job at a time.
• This configuration was first used in research institutions
but proved unacceptable for the business community.
• It was not cost effective to spend almost $200,000 for
equipment that could be used by only one person ay a
time.
Fixed Partitions
• The first attempt to follow multiprogramming used fixed
partitions (static partitions) within main memory.
• One partition for each job.
• The size of each partition was designated when the system
was powered on.
• Each partition could only be reconfigured when the
system was shut down.
• Once the system was in operation, the partition sizes
remained static.
Fixed Partitions
• Introduced protection of the job’s memory space
• Once a partition was assigned to a job, no other job could be allowed
to enter its boundaries, either accidentally or intentionally.
• Not a problem in single-user contiguous allocation schemes.
• Fixed Partitions is more flexible than the Single-User scheme
because it allows several programs to be in memory at the
same time.
• Fixed Partitions still requires that the entire program be
stored contiguously and in memory from the beginning to the
end of its execution.
Fixed Partitions
• In order to allocate memory spaces to jobs, the OS’s Memory
Manager must keep a table which shows:
• Each memory partition size
• Its address
• Its access restrictions
• Its current status (free or busy)
• As each job terminates, the status of its memory partition is
changed from busy to free so an incoming job can be assigned
to that partition.
Fixed Partitions (cont'd.)
• Disadvantages
• The Fixed Partition scheme works well if all the jobs run on
the system are of the same size or if the sizes are known
ahead of time and don’t vary between reconfiguration.
• If the partition sizes are too small:
• larger jobs will be rejected if they’re too big to fit into the
largest partition.
• Large jobs will wait if the large partitions are busy.
• Large jobs may have a longer turnaround time as they
wait for free partitions of sufficient size or may never run.
Fixed Partitions (cont'd.)
• Disadvantages
• If the partition sizes are too big, memory is wasted.
• If a job does not occupy the entire partition, the unused
memory in the partition will remain idle.
• It can’t be given to another job because each partition is
allocated to only one job at a time.
• Partial usage of fixed partitions and the coinciding creation
of unused spaces within the partition is called internal
fragmentation and is a major drawback to the fixed
partition memory allocation scheme.
Dynamic Partitions
• With Dynamic Partitions available memory is still kept in
contiguous blocks but jobs are given only as much memory as
they request when they are loaded for processing.
• A dynamic partition scheme fully utilizes memory when the
first jobs are loaded.
• As new jobs enter the system that are not the same size as
those that just vacated memory, they are fit into the available
spaces on a priority basis.
• First Come – First Serve priority
Dynamic Partitions
• The subsequent allocation of memory creates fragments
of free memory between blocks of allocated memory.
• External fragmentation
• Lets memory go to waste
Dynamic Partitions (cont'd.)
Best-FitVersus First-Fit Allocation
• For both fixed and dynamic memory allocation schemes, the
OS must keep lists of each memory location noting which are
free and which are busy.
• As new jobs come into the system, the free partitions must be
allocated.
• These partitions may be allocated on the basis of:
• First-fit memory allocation:
• First partition fitting the requirements
• Best-fit memory allocation:
• Smallest partition fitting the requirements
• Least wasted space
Best-FitVersus First-FitAllocation
(cont'd.)
Best-FitVersus First-Fit Allocation
(cont'd.)
Best-FitVersus First-Fit Allocation
(cont'd.)
• Algorithm for first-fit
• Assumes memory manager keeps two lists
• One for free memory blocks
• One for busy memory blocks
• The operation consists of a simple loop that compares
the size of each job to the size of each memory block until
a block is found that is large enough to fit the job.
• The job is stored into that block of memory and the
Memory Manager moves out of the loop to fetch the next
job from the entry queue
Best-FitVersus First-Fit Allocation
(cont'd.)
• Algorithm for first-fit (cont'd.):
• If the entire list is searched in vain, then the job is
placed into a waiting queue.
• The Memory Manager then fetches the next job and
repeats the process.
Best-FitVersus First-Fit Allocation
(cont'd.)
Best-FitVersus First-Fit Allocation
(cont'd.)
• Algorithm for best-fit
• The goal is to find the smallest memory block into
which the job will fit
• The entire table must be searched before the
allocation can be made because the memory blocks
are physically stored in sequence according to their
location in memory.
Best-FitVersus First-Fit Allocation
(cont'd.)
Best-FitVersus First-Fit Allocation
(cont'd.)
• Hypothetical allocation schemes
• Next-fit:
• Starts searching from last allocated block, for next
available block when a new job arrives
• Worst-fit:
• Allocates largest free available block to new job
• Opposite of best-fit
• Good way to explore theory of memory allocation
• Not best choice for an actual system
Deallocation
• There eventually comes a time when memory space must
be released or deallocated.
• For a fixed-partition system:
• When the job is completed, the Memory Manager
resets the status of the memory block where the job
was stored to “free”.
• Any code may be used.
• Example code: binary values with zero indicating
free and one indicating busy.
Deallocation (cont'd.)
• For dynamic-partition system:
• A more complexAlgorithm is used because the algorithm
tries to combine free areas of memory whenever possible.
• The system must be prepared for three alternative
solutions:
• Case 1:When the block to be deallocated is adjacent
to another free block
• Case 2:When the block to be deallocated is between
two free blocks
• Case 3:When the block to be deallocated is isolated
from other free blocks
THANKYOU
Understanding Operating Systems, Sixth Edition 28

Mais conteúdo relacionado

Mais procurados

OPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURES
OPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURESOPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURES
OPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURESpriyasoundar
 
Page replacement algorithms
Page replacement algorithmsPage replacement algorithms
Page replacement algorithmssangrampatil81
 
Process management os concept
Process management os conceptProcess management os concept
Process management os conceptpriyadeosarkar91
 
Operating System Lecture Notes
Operating System Lecture NotesOperating System Lecture Notes
Operating System Lecture NotesFellowBuddy.com
 
8 memory management strategies
8 memory management strategies8 memory management strategies
8 memory management strategiesDr. Loganathan R
 
Virtual memory
Virtual memoryVirtual memory
Virtual memoryAnuj Modi
 
Process scheduling (CPU Scheduling)
Process scheduling (CPU Scheduling)Process scheduling (CPU Scheduling)
Process scheduling (CPU Scheduling)Mukesh Chinta
 
Fixed partitioning of memory
Fixed partitioning of memoryFixed partitioning of memory
Fixed partitioning of memoryJohn Scott Giini
 
services and system calls of operating system
services and system calls of operating system services and system calls of operating system
services and system calls of operating system Saurabh Soni
 
Operating system
Operating systemOperating system
Operating systemyogitamore3
 
Types of operating system
Types of operating systemTypes of operating system
Types of operating systemAshikur Rahman
 
Operating Systems - "Chapter 4: Multithreaded Programming"
Operating Systems - "Chapter 4:  Multithreaded Programming"Operating Systems - "Chapter 4:  Multithreaded Programming"
Operating Systems - "Chapter 4: Multithreaded Programming"Ra'Fat Al-Msie'deen
 
Cpu scheduling in operating System.
Cpu scheduling in operating System.Cpu scheduling in operating System.
Cpu scheduling in operating System.Ravi Kumar Patel
 
Operating system 34 contiguous allocation
Operating system 34 contiguous allocationOperating system 34 contiguous allocation
Operating system 34 contiguous allocationVaibhav Khanna
 

Mais procurados (20)

OPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURES
OPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURESOPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURES
OPERATING SYSTEM SERVICES, OPERATING SYSTEM STRUCTURES
 
Page replacement algorithms
Page replacement algorithmsPage replacement algorithms
Page replacement algorithms
 
Process management os concept
Process management os conceptProcess management os concept
Process management os concept
 
Operating System Lecture Notes
Operating System Lecture NotesOperating System Lecture Notes
Operating System Lecture Notes
 
Os Threads
Os ThreadsOs Threads
Os Threads
 
8 memory management strategies
8 memory management strategies8 memory management strategies
8 memory management strategies
 
Virtual memory
Virtual memoryVirtual memory
Virtual memory
 
Memory management
Memory managementMemory management
Memory management
 
Process scheduling (CPU Scheduling)
Process scheduling (CPU Scheduling)Process scheduling (CPU Scheduling)
Process scheduling (CPU Scheduling)
 
Process of operating system
Process of operating systemProcess of operating system
Process of operating system
 
Fixed partitioning of memory
Fixed partitioning of memoryFixed partitioning of memory
Fixed partitioning of memory
 
Demand paging
Demand pagingDemand paging
Demand paging
 
services and system calls of operating system
services and system calls of operating system services and system calls of operating system
services and system calls of operating system
 
Operating system
Operating systemOperating system
Operating system
 
Processes and threads
Processes and threadsProcesses and threads
Processes and threads
 
Memory Management
Memory ManagementMemory Management
Memory Management
 
Types of operating system
Types of operating systemTypes of operating system
Types of operating system
 
Operating Systems - "Chapter 4: Multithreaded Programming"
Operating Systems - "Chapter 4:  Multithreaded Programming"Operating Systems - "Chapter 4:  Multithreaded Programming"
Operating Systems - "Chapter 4: Multithreaded Programming"
 
Cpu scheduling in operating System.
Cpu scheduling in operating System.Cpu scheduling in operating System.
Cpu scheduling in operating System.
 
Operating system 34 contiguous allocation
Operating system 34 contiguous allocationOperating system 34 contiguous allocation
Operating system 34 contiguous allocation
 

Semelhante a Memory Management

Memory Management Strategies - II.pdf
Memory Management Strategies - II.pdfMemory Management Strategies - II.pdf
Memory Management Strategies - II.pdfHarika Pudugosula
 
M20CA1030_391_2_Part2.pptx
M20CA1030_391_2_Part2.pptxM20CA1030_391_2_Part2.pptx
M20CA1030_391_2_Part2.pptxHarikishnaKNHk
 
memory managment on computer science.ppt
memory managment on computer science.pptmemory managment on computer science.ppt
memory managment on computer science.pptfootydigarse
 
Memory Management in Operating Systems for all
Memory Management in Operating Systems for allMemory Management in Operating Systems for all
Memory Management in Operating Systems for allVSKAMCSPSGCT
 
07-MemoryManagement.ppt
07-MemoryManagement.ppt07-MemoryManagement.ppt
07-MemoryManagement.ppthello509579
 
chapter 2 memory and process management
chapter 2 memory and process managementchapter 2 memory and process management
chapter 2 memory and process managementAisyah Rafiuddin
 
Evolution, Strutcture and Operations.pptx
Evolution, Strutcture and Operations.pptxEvolution, Strutcture and Operations.pptx
Evolution, Strutcture and Operations.pptxssuser000e54
 
Lecture-7 Main Memroy.pptx
Lecture-7 Main Memroy.pptxLecture-7 Main Memroy.pptx
Lecture-7 Main Memroy.pptxAmanuelmergia
 
Memory management ppt
Memory management pptMemory management ppt
Memory management pptManishaJha43
 
Operating Systems 1 (9/12) - Memory Management Concepts
Operating Systems 1 (9/12) - Memory Management ConceptsOperating Systems 1 (9/12) - Memory Management Concepts
Operating Systems 1 (9/12) - Memory Management ConceptsPeter Tröger
 
Internet of Things, TYBSC IT, Semester 5, Unit IV
Internet of Things, TYBSC IT, Semester 5, Unit IVInternet of Things, TYBSC IT, Semester 5, Unit IV
Internet of Things, TYBSC IT, Semester 5, Unit IVArti Parab Academics
 
Storage management
Storage managementStorage management
Storage managementAtul Sharma
 
Heap Memory Management.pptx
Heap Memory Management.pptxHeap Memory Management.pptx
Heap Memory Management.pptxViji B
 
DB ppt OS unit - 3.pdf
DB ppt OS unit - 3.pdfDB ppt OS unit - 3.pdf
DB ppt OS unit - 3.pdfDBharathi8
 

Semelhante a Memory Management (20)

Ch4 memory management
Ch4 memory managementCh4 memory management
Ch4 memory management
 
Memory Management Strategies - II.pdf
Memory Management Strategies - II.pdfMemory Management Strategies - II.pdf
Memory Management Strategies - II.pdf
 
M20CA1030_391_2_Part2.pptx
M20CA1030_391_2_Part2.pptxM20CA1030_391_2_Part2.pptx
M20CA1030_391_2_Part2.pptx
 
memory managment on computer science.ppt
memory managment on computer science.pptmemory managment on computer science.ppt
memory managment on computer science.ppt
 
Memory Management in Operating Systems for all
Memory Management in Operating Systems for allMemory Management in Operating Systems for all
Memory Management in Operating Systems for all
 
07-MemoryManagement.ppt
07-MemoryManagement.ppt07-MemoryManagement.ppt
07-MemoryManagement.ppt
 
chapter 2 memory and process management
chapter 2 memory and process managementchapter 2 memory and process management
chapter 2 memory and process management
 
Evolution, Strutcture and Operations.pptx
Evolution, Strutcture and Operations.pptxEvolution, Strutcture and Operations.pptx
Evolution, Strutcture and Operations.pptx
 
OS UNIT4.pptx
OS UNIT4.pptxOS UNIT4.pptx
OS UNIT4.pptx
 
Chapter07_ds.ppt
Chapter07_ds.pptChapter07_ds.ppt
Chapter07_ds.ppt
 
Os unit 3
Os unit 3Os unit 3
Os unit 3
 
Lecture-7 Main Memroy.pptx
Lecture-7 Main Memroy.pptxLecture-7 Main Memroy.pptx
Lecture-7 Main Memroy.pptx
 
Memory management ppt
Memory management pptMemory management ppt
Memory management ppt
 
Operating Systems 1 (9/12) - Memory Management Concepts
Operating Systems 1 (9/12) - Memory Management ConceptsOperating Systems 1 (9/12) - Memory Management Concepts
Operating Systems 1 (9/12) - Memory Management Concepts
 
Stack and heap
Stack and heapStack and heap
Stack and heap
 
Internet of Things, TYBSC IT, Semester 5, Unit IV
Internet of Things, TYBSC IT, Semester 5, Unit IVInternet of Things, TYBSC IT, Semester 5, Unit IV
Internet of Things, TYBSC IT, Semester 5, Unit IV
 
Storage management
Storage managementStorage management
Storage management
 
Heap Memory Management.pptx
Heap Memory Management.pptxHeap Memory Management.pptx
Heap Memory Management.pptx
 
DB ppt OS unit - 3.pdf
DB ppt OS unit - 3.pdfDB ppt OS unit - 3.pdf
DB ppt OS unit - 3.pdf
 
Memory Management.pdf
Memory Management.pdfMemory Management.pdf
Memory Management.pdf
 

Último

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
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
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
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
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
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
 
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
 

Último (20)

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
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
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
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...
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
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
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
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
 
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
 

Memory Management

  • 2. Introduction • Management of main memory is critical. • The performance of the entire system has been directly dependent on two things: • How much memory is available • How it is optimization while jobs are being processed. • This chapter introduces: • The memory manager (RAM) • Core memory (primary storage)
  • 3. Introduction • This chapter introduces: • Four types of memory allocation schemes • Single-user systems • Fixed partitions • Dynamic partitions • Relocatable dynamic partitions • These early memory management schemes are seldom used by today’s OSs but are important to study because each one introduced fundamental concepts that helped memory management evolve.
  • 4. Single-User Contiguous Scheme • Commercially available in 1940s and 1950s • Each program was loaded in its entirety into memory and allocated as much contiguous memory space allocated as it needed. • If the program was too large and didn’t fit the available memory space, it couldn’t be executed, • Although early computers were physically large, they had very little memory. • Computers have only a finite amount of memory.
  • 5. Single-User Contiguous Scheme • If a program doesn’t fit, then either the size of the main memory must be increased or the program must be modified. • Making it smaller • Using methods that allow program segments (partitions made to the program) to be overlaid. • Transfer segments of a program from secondary storage into main memory for execution • Two or more segments take turns occupying the same memory locations.
  • 6. Memory Management Concurrency • A program cannot process data it does not have. • A program spends more time waiting for I/O than processing data.
  • 7. Single-User Contiguous Scheme • The amount of work performed by the Memory Manager is minimal. • Only two hardware items are needed: • A register to store the base address • An accumulator to keep track of the size of the program as it’s being read into memory. • Once the program is entirely loaded into memory, it remains there until execution is complete, either through normal termination or by intervention of the OS.
  • 8. Single-User Contiguous Scheme (cont'd.) • Disadvantages • There is no support for multiprogramming or networking • It can handle only one job at a time. • This configuration was first used in research institutions but proved unacceptable for the business community. • It was not cost effective to spend almost $200,000 for equipment that could be used by only one person ay a time.
  • 9. Fixed Partitions • The first attempt to follow multiprogramming used fixed partitions (static partitions) within main memory. • One partition for each job. • The size of each partition was designated when the system was powered on. • Each partition could only be reconfigured when the system was shut down. • Once the system was in operation, the partition sizes remained static.
  • 10. Fixed Partitions • Introduced protection of the job’s memory space • Once a partition was assigned to a job, no other job could be allowed to enter its boundaries, either accidentally or intentionally. • Not a problem in single-user contiguous allocation schemes. • Fixed Partitions is more flexible than the Single-User scheme because it allows several programs to be in memory at the same time. • Fixed Partitions still requires that the entire program be stored contiguously and in memory from the beginning to the end of its execution.
  • 11. Fixed Partitions • In order to allocate memory spaces to jobs, the OS’s Memory Manager must keep a table which shows: • Each memory partition size • Its address • Its access restrictions • Its current status (free or busy) • As each job terminates, the status of its memory partition is changed from busy to free so an incoming job can be assigned to that partition.
  • 12. Fixed Partitions (cont'd.) • Disadvantages • The Fixed Partition scheme works well if all the jobs run on the system are of the same size or if the sizes are known ahead of time and don’t vary between reconfiguration. • If the partition sizes are too small: • larger jobs will be rejected if they’re too big to fit into the largest partition. • Large jobs will wait if the large partitions are busy. • Large jobs may have a longer turnaround time as they wait for free partitions of sufficient size or may never run.
  • 13. Fixed Partitions (cont'd.) • Disadvantages • If the partition sizes are too big, memory is wasted. • If a job does not occupy the entire partition, the unused memory in the partition will remain idle. • It can’t be given to another job because each partition is allocated to only one job at a time. • Partial usage of fixed partitions and the coinciding creation of unused spaces within the partition is called internal fragmentation and is a major drawback to the fixed partition memory allocation scheme.
  • 14. Dynamic Partitions • With Dynamic Partitions available memory is still kept in contiguous blocks but jobs are given only as much memory as they request when they are loaded for processing. • A dynamic partition scheme fully utilizes memory when the first jobs are loaded. • As new jobs enter the system that are not the same size as those that just vacated memory, they are fit into the available spaces on a priority basis. • First Come – First Serve priority
  • 15. Dynamic Partitions • The subsequent allocation of memory creates fragments of free memory between blocks of allocated memory. • External fragmentation • Lets memory go to waste
  • 17. Best-FitVersus First-Fit Allocation • For both fixed and dynamic memory allocation schemes, the OS must keep lists of each memory location noting which are free and which are busy. • As new jobs come into the system, the free partitions must be allocated. • These partitions may be allocated on the basis of: • First-fit memory allocation: • First partition fitting the requirements • Best-fit memory allocation: • Smallest partition fitting the requirements • Least wasted space
  • 20. Best-FitVersus First-Fit Allocation (cont'd.) • Algorithm for first-fit • Assumes memory manager keeps two lists • One for free memory blocks • One for busy memory blocks • The operation consists of a simple loop that compares the size of each job to the size of each memory block until a block is found that is large enough to fit the job. • The job is stored into that block of memory and the Memory Manager moves out of the loop to fetch the next job from the entry queue
  • 21. Best-FitVersus First-Fit Allocation (cont'd.) • Algorithm for first-fit (cont'd.): • If the entire list is searched in vain, then the job is placed into a waiting queue. • The Memory Manager then fetches the next job and repeats the process.
  • 23. Best-FitVersus First-Fit Allocation (cont'd.) • Algorithm for best-fit • The goal is to find the smallest memory block into which the job will fit • The entire table must be searched before the allocation can be made because the memory blocks are physically stored in sequence according to their location in memory.
  • 25. Best-FitVersus First-Fit Allocation (cont'd.) • Hypothetical allocation schemes • Next-fit: • Starts searching from last allocated block, for next available block when a new job arrives • Worst-fit: • Allocates largest free available block to new job • Opposite of best-fit • Good way to explore theory of memory allocation • Not best choice for an actual system
  • 26. Deallocation • There eventually comes a time when memory space must be released or deallocated. • For a fixed-partition system: • When the job is completed, the Memory Manager resets the status of the memory block where the job was stored to “free”. • Any code may be used. • Example code: binary values with zero indicating free and one indicating busy.
  • 27. Deallocation (cont'd.) • For dynamic-partition system: • A more complexAlgorithm is used because the algorithm tries to combine free areas of memory whenever possible. • The system must be prepared for three alternative solutions: • Case 1:When the block to be deallocated is adjacent to another free block • Case 2:When the block to be deallocated is between two free blocks • Case 3:When the block to be deallocated is isolated from other free blocks