SLIDE 2 March 08 OS: Operating-System Structures 5
Operating System Services
One set of OS services provides functions that are helpful to
the user:
User interface (UI): CLI, GUI, Batch Program execution: Load a program into memory, run that program,
end execution either normally or abnormally (indicating error)
I/O operations: Provide a means to do I/O required for a running
program (process)
File-system manipulation: Programs need to read/write files and
directories (folders), create/delete them, search them, list file information, manage access permissions (allow/deny access based on
March 08 OS: Operating-System Structures 6
Operating System Services (Cont.)
Communications:
Processes may exchange information, on the same computer or
between computers over a network
via shared memory or through message passing
Error detection:
OS needs to be constantly aware of possible errors (may occur in
the CPU and memory hardware, I/O devices, user program)
E.g. power failure, lack of paper in the printer, arithmetic overflow For each type of error, OS should take the appropriate action to
ensure correct and consistent computing
Debugging facilities can greatly enhance the user’s and
programmer’s abilities to efficiently use the system
March 08 OS: Operating-System Structures 7
Operating System Services (Cont.)
- Another set of OS functions exists for ensuring efficient operation of the
system itself
OS allocate resources to multiple users or jobs Some resources may have special allocation code, e.g. CPU cycles, main memory,
and file storage
Other resources may have general request and release code, e.g. I/O devices
(such as printers, modems, USB storage drives)
Keeping track of which users use how much and what kinds of computer
resources
For billing users or accumulating usage statistics
Protection involves ensuring that all access to system resources is controlled
- Not possible for a process to interfere with others or the OS itself
Security of the system from outsiders requires user authentication, extends to
defending external I/O devices from invalid access attempts
If a system is to be protected and secure, precautions must be instituted
throughout it. A chain is only as strong as its weakest link!
March 08 OS: Operating-System Structures 8
How OS services are made available? User User UI UI Systems Calls Systems Calls System Programs System Programs User Programs User Programs API API Hardware Hardware