Download Memory Management

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Copland (operating system) wikipedia , lookup

Commodore DOS wikipedia , lookup

Plan 9 from Bell Labs wikipedia , lookup

MTS system architecture wikipedia , lookup

Distributed operating system wikipedia , lookup

OS 2200 wikipedia , lookup

DNIX wikipedia , lookup

RSTS/E wikipedia , lookup

Burroughs MCP wikipedia , lookup

Unix security wikipedia , lookup

Process management (computing) wikipedia , lookup

Spring (operating system) wikipedia , lookup

VS/9 wikipedia , lookup

Paging wikipedia , lookup

CP/M wikipedia , lookup

Transcript
Process Management
n
n
OS manages many kinds of activities:
n
Primary (Main) Memory
●
User programs
●
Provides direct access storage for CPU
●
System programs: printer spoolers,
name servers, file servers, etc.
●
Processes must be in main memory to
execute
Each is encapsulated in a process
●
●
n
A process includes the complete
execution context (code, data, PC,
registers, OS resources in use, etc.)
OS must:
●
n
n
n
A process is one instance of a program in
execution; many processes can be
running the same program
n
●
●
Create, delete, suspend, resume, and
schedule processes
●
Support inter-process communication and
synchronization, handle deadlock
Fall 1998, Lecture 04
Keep track of memory in use
Keep track of unused (“free”) memory
Protect memory space
Allocate, deallocate space for processes
Swap processes: memory <–> disk
Policies
n
OS must:
1
Mechanics
n
A process is not a program
n
n
Memory Management
n
n
Decide when to load each process into
memory
Decide how much memory space to
allocate each process
Decide when a process should be
removed from memory
2
Fall 1998, Lecture 04
File System Management
n
Disk Management
File System
n
●
Disks (secondary storage) provide longterm storage, but are awkward to use
directly
●
File system provides files and various
operations on files
n
n
A file is a long-term storage entity, a
named collection of persistent information
that can be read or written
A file system supports directories, which
contain files and other directories
n
Disk
●
The actual hardware that sits underneath
the file system
●
Large enough to store all user programs
and data, application programs, entire OS
●
Persistent — endures system failures
OS must:
●
Manage disk space at low level:
n
– Name, size, date created, date last
modified, owner, etc.
n
n
n
OS must:
●
Create and delete files and directories
●
Manipulate files and directories
n
●
Handle low-level disk functions, such as:
n
n
●
Read, write, extend, rename, copy, protect
Scheduling of disk operations
Head movement
Note fine line between disk management
and file system management
Provide general higher-level services
n
3
●
Keep track of used spaces
Keep track of unused (free) space
Keep track of “bad blocks”
Backups, accounting, quotas
Fall 1998, Lecture 04
4
Fall 1998, Lecture 04
System Calls
n
One OS Structure: Large Kernel
user programs
Process control
●
end/abort this program
sytem services: shells, compilers, printing, network access
●
load/execute another program
●
create/terminate a process
n
n
n
n
n
get/set attributes
wait specified time
wait for event, signal event
kernel
signals
terminals
character I/O
files
swapping
disk, tape
CPU scheduling
page replacement
virtual memory
terminal
controllers
device
controllers
memory
controllers
File manipulation
create/open/read/write/close/delete file
●
get/set attributes
n
Device manipulation
●
Critical OS data structures and device
registers are protected from user
programs
●
Can use privileged instructions
get/set time/date
5
Fall 1998, Lecture 04
6
Fall 1998, Lecture 04
Coping with Hugeness
n
machinedependent
The kernel is the protected part of the OS
that runs in kernel mode
request/read/write/release device
Information
●
machineindependent
hardware: terminals, I/O devices, memory
●
●
n
system calls
OS Design Issues
Ideal:
n
Another approach: layered OS
user programs
shell
compiler printing
●
Divide OS into layers
●
Each layer uses services provided by
next lower layer
UNIX OS Kernel
n
n
n
n
Reality:
n
user programs
shell
n
compiler printing
●
Advantages: modularity, simplicity
n
n
UNIX OS Kernel
User programs
Shell & compilers
CPU scheduling & memory management
Device drivers
Hardware
Disadvantages: performance
Big tradeoff in OS design:
➥ simplicity versus performance
➥ Always strive for simplicity…
➥ …Unless you have a strong reason to
believe that complication is needed to
achieve acceptable performance
7
Fall 1998, Lecture 04
8
Fall 1998, Lecture 04
The Future?
Network Operating Systems
Another OS Structure: Microkernel
n
user
processes
Sun’s JavaOS architecture:
Foundation
Classes
user
mode
thread
system
system
processes
file
system
network
support
AWT
Classes
JavaOS
Windows
CPU
scheduling
JavaOS
Graphics
paging
Net and I/O
Classes
TCP
NFS Client
UDP
IP
Ethernet
Keyboard
Mouse
Java Virtual Machine
Booting, Traps, Interrupts, Threads
microkernel
n
n
9
communication
protection
low-level VM
processor control
kernel
mode
Details at
http://java.sun.com/doc/white_papers.html
Goal is to minimize what goes in the
kernel, implementing as much of the OS
as possible in user-mode processes
●
Better reliability, easier extension
●
Lower performance (unfortunately)
n
No disk
n
OS can only run a net browser
Examples: Mach (US), Chorus (France)
Fall 1998, Lecture 04
10
●
Get whatever the OS needs over the net
●
Get whatever application programs are
needed over the net (as Java applets)
Fall 1998, Lecture 04