+ All Categories
Home > Documents > OS provide a user-friendly environment and manage resources of the computer system. Operating...

OS provide a user-friendly environment and manage resources of the computer system. Operating...

Date post: 20-Jan-2016
Category:
Upload: brandon-lucas
View: 215 times
Download: 0 times
Share this document with a friend
25
Transcript
Page 1: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.
Page 2: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

• OS provide a user-friendly environment and manage resources of the computer system.

• Operating systems manage:– Processes– Memory– Storage – I/O subsystem

Page 3: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Process Management

• A process is a program in execution. It is a unit of work within the system. Program is a passive entity, process is an active entity.

• Operating system controls execution of user and system processes.

• Process needs resources to accomplish its task– CPU, memory, I/O, files– Initialization data

• Process termination requires reclaim of any reusable resources

Page 4: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Process Management Activities

The operating system is responsible for the following activities in connection with process management:

• Creating and deleting both user and system processes

• Suspending and resuming processes (context switching)

• Providing mechanisms for process synchronization• Providing mechanisms for process communication

Page 5: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Memory Management

• Memory management activities– Keeping track of which parts of memory are

currently being used and by whom– Deciding which processes (or parts thereof)

and data to move into and out of memory– Allocating and deallocating memory space as

needed

Page 6: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Storage Management

• OS provides uniform, logical view of information storage– Abstracts physical properties to logical

storage unit - file

Page 7: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Storage Management

• File-System management– Files usually organized into directories– Access control on most systems to

determine who can access what– OS activities include

• Creating and deleting files and directories• Primitives to manipulate files and dirs• Mapping files onto secondary storage• Backup files onto stable (non-volatile) storage

media

Page 8: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Disk Management

• OS activities– Free-space management– Disk-space allocation– Disk scheduling

• Some storage need not be fast– Tertiary storage includes optical storage, magnetic

tape (often used for back-ups).

Page 9: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

I/O Management

• One purpose of OS is to hide peculiarities of hardware devices from the user

• I/O subsystem responsible for– Memory management of I/O including buffering (storing

data temporarily while it is being transferred), caching (storing parts of data in faster storage for performance), spooling (intercepting concurrent requests for device such as printer and ensuring sequential order, i.e., no interleaving of files).

– General device-driver interface– Drivers for specific hardware devices

Page 10: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

OS as Execution Environment

• Can also view the operating system as providing an environment for the execution of programs. – Provides services for user as well as user

(and system) applications.

Page 11: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Services for User

– User interface - Almost all operating systems have a user interface (UI)

• Varies between Command-Line Interface (CLI), Graphics User Interface (GUI), Batch

– Program execution - The system must be able to load a program into memory and to run that program, end execution, either normally or abnormally (indicating error)

Page 12: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Operating System Services

– I/O operations - A running program may require I/O, which may involve a file or an I/O device.

– File-system manipulation - The file system is of particular interest. Obviously, programs need to read and write files and directories, create and delete them, search them, list file Information, permission management.

– Communications – Processes may exchange information, on the same computer or between computers over a network

• Communications may be via shared memory or through message passing (packets moved by the OS)

Page 13: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Operating System Services

– Error detection – OS needs to be constantly aware of possible errors

• May occur in the CPU and memory hardware, in I/O devices, in user program

• 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

Page 14: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Other Services

• Another set of OS functions exists for ensuring the efficient operation of the system itself via resource sharing– Resource allocation - When multiple users or

multiple jobs running concurrently, resources must be allocated to each of them

• Many types of resources - CPU cycles, main memory, file storage, and I/O devices.

– Accounting - To keep track of which users use how much and what kinds of computer resources

Page 15: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Operating System Services (Cont.)

• Protection and security - The owners of information stored in a multi-user or networked computer system may want to control use of that information, concurrent processes should not interfere with each other– Protection involves ensuring that all access to system

resources is controlled• E.g., base-limit registers for memory protection.• Access lists on files.

– Security of the system from outsiders. • E.g., requiring user name and password.

Page 16: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

User Operating System Interface - CLI

CLI allows direct command entry• Sometimes implemented in kernel, sometimes by

systems program• Sometimes multiple flavors implemented – shells• Primarily fetches a command from user and

executes it– Commands may be implemented in shell – Implemented through “system calls”.

» Looks for program of that name. If found, executes it. If not, returns an error message.

Page 17: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

User Operating System Interface - GUI

• User-friendly desktop metaphor interface– Usually mouse, keyboard, and monitor– Icons represent files, programs, actions, etc– Various mouse buttons over objects in the

interface cause various actions (provide information, options, execute function, open directory (known as a folder)

– Invented at Xerox PARC

Page 18: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

System Calls

• Interface between executing program and OS defined by set of system calls OS provides.

• System call causes a TRAP to switch from user to kernel mode and starts execution at interrupt vector location for TRAP instruction.

• Operating system looks at requested operation and any parameters passed by the application.

• Dispatches the correct system call handler through a table of pointers to system call handlers.

• Handler completes and (may) return to user code at the next instruction. OS may schedule another process to execute.

Page 19: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Transition from User to Kernel Mode

Page 20: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

System Calls

• Mostly accessed by programs via a high-level Application Program Interface (API) rather than direct system call use

• Three most common APIs are Win32 API for Windows, POSIX API for POSIX-based systems (including virtually all versions of UNIX, Linux, and Mac OS X), and Java API for the Java virtual machine (JVM)

• Why use APIs rather than system calls?

Page 21: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

System Calls

• Why use APIs rather than system calls?– Portability: Code should run on any system that

supports the same API.

Page 22: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

System Calls

• Why use APIs rather than system calls?– Portability: Code should run on any system that

supports the same API.

– Ease of use.• Some system calls are quite complex involving, for example,

assembly code.

Page 23: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

System Call Implementation

• High-level languages provide system-call interface.– Run-time libraries added by the compiler.

• Program makes an API call.

• Trapped by the run-time library.

• RTL places number of requested system call in correct register.

• Places parameters in appropriate locations.

• Makes system call.

Page 24: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

System Call Implementation

• The standard I/O library in C (C++) is another high-level API. – Examples: fopen, printf, scanf, cin, cout ……………

• These are functions available to the program, but they are not system calls.

• Rather, they are replaced (at compile time) with calls to user-level libraries.

– In C, these libraries are loaded into the application’s address space via the #include directive.

– Actual system call made in the library.

Page 25: OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.

Standard C Library Example

• C program invoking printf() library call, which calls write() system call.

• Library handles details of making system call (e.g., where to put parameters, system call id, etc. )


Recommended