introduction - uni koblenz-landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the...

57
Introduction

Upload: others

Post on 24-Mar-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Introduction

Page 2: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Outlook

Defining the Term Operating Systemg p g y Computer Architecture Recap

E l d C t Evolved Concepts

2

Page 3: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Defining the Term Operating System

Page 4: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

What is an Operating System?p g y

[Silberschatz et al.] An operating system is a program that manages the computer hardware It also provides a basismanages the computer hardware. It also provides a basis for application programs and acts as an intermediary between the computer user and the computer hardware.p p

[Stallings] An operating system is a program that controls the f l d fexecution of application programs and acts as an interface

between applications and the computer hardware.

[Tanenbaum] Computers are equipped with a layer of software called the operating system whose job is to p g y jmanage all devices and provide user programs with a simpler interface to the hardware.

4

Page 5: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

What is an Operating System?p g y

[Silberschatz et al.] An operating system is a program that manages the computer hardware It also provides a basismanages the computer hardware. It also provides a basis for application programs and acts as an intermediarybetween the computer user and the computer hardware.p p

[Stallings] An operating system is a program that controls the f l d fexecution of application programs and acts as an interface

between applications and the computer hardware.

[Tanenbaum] Computers are equipped with a layer of software called the operating system whose job is to p g y jmanage all devices and provide user programs with a simpler interface to the hardware.

5

Page 6: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

A General Computer Systems Viewp y

user 1 user 2 user 3 user n…

compiler word processor browser databasesystem

system and application programssystem

operating system

computer hardwarecomputer hardware

6

Page 7: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Defining Operating Systemsg p g y

Operating system defined by the one program running all theOperating system defined by the one program running all the times on the computer responsible for resource allocation and control

d k l Denoted as kernel All else are system and application programs

[Resource allocation] Numerous and possibly conflicting requests for resources

CPU RAM St I/O CPU, RAM, Storage, I/O Decide how to allocate them to specific programs and users

Important: efficiency and fairness

[Reso ce cont ol] [Resource control] Manage and execute user programs Prevent errors and improper use of the computer Operation and control of I/O devices

7

Page 8: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Computer Architecture Recap

System OrganizationStorage and CachingI/O MechanismsHardware Protection

Page 9: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Computer System Organizationp y g

Components: CPU, bus, controller, memory

9

Page 10: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

An Example Boardp

ATX mainboard, KT333 chip set, MSI10

Page 11: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Linking the OS and Hardware:Starting and Rebootingg g

Bootstrap programp p g Used to start up the computer

Small and typically stored in ROM Small and typically stored in ROM

Bootstrap program is booting the system Initialize CPU registers, device controllers, and Initialize CPU registers, device controllers, and

memory contents Load the operating system kernel Load the operating system kernel Kernel gets the CPU and start the first process

11

Page 12: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Program Executiong Instructions

Memory access0xef0c ...0xef10 load 0xaffc d0 Memory access

Arithmetic Branch

0xef10 load 0xaffc, d00xef14 loadc 0x0001, d10xef18 loadc 0x0001, d20 f1 dd d2 d1

PC

Registers e g :

0xef1c add d2, d10xef20 swap d1, d20xef24 dec d0

Registers, e.g.: Data, address Instruction

P t

0xef28 jnz 0xef1c0xef2c store d2, 0xb0000xef30 ...

Program counter Stack pointer Status register

...

hStatus register

Stackll t

0xf0000xf0040xf008SP

push

call, return 0xf0080xf00c

SP

pop12

Page 13: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Random Access Memory (RAM)y ( ) Only storage directly accessible by CPU

Memory stores data load: Memory CPU register store: CPU Register Memory

Memory stores instructions as well! Memory stores instructions as well!

Typical instruction execution cycleF t h i t ti i t CPU i t ti i t Fetch instruction into CPU instruction register

Decode instruction and fetch operands Execute instruction on operands Store result back into memory (or register)

Referred as von Neumann architecture Referred as von Neumann architecture

13

Page 14: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Computer Architecture Recap

System OrganizationStorage and CachingI/O MechanismsHardware Protection

Page 15: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Storage StructuregS

volatile

non volatile

Cost

izenon-volatile

15

Page 16: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Caching: Example CPU and RAMg p

ProblemCPU registers accessible with one cycle of CPU clock CPU registers accessible with one cycle of CPU clock

Accessing memory may take many cycles of CPU clock CPU stall

Solution: Cache between CPU registers and RAM Faster but more expensive! Faster but more expensive!

Data cache Check if data is present If not, copy data into cache temporarily (possibly prefetch subsequent data)(p y p q )

Instruction cacheFetch next instructions expected to be executed Fetch next instructions expected to be executed

16

Page 17: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Cache Coherency and Consistencyy y

Example: Incrementing A on magnetic disk Stored values of A differ Stored values of A differ Requires writing back to magnetic disk

Cache-

Increasing complexityMultitasking: CPU switches among processes

Consistency

Multitasking: CPU switches among processes Multiprocessor: local caches Distributed environment: replicas on different

Cache-C h Distributed environment: replicas on different

computers17

Coherency

Page 18: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Computer Architecture Recap

System OrganizationStorage and CachingI/O MechanismsHardware Protection

Page 19: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

I/O Structure: the simple way connecting Device and Memory via CPUy

Device concepts: pbuffer, controller register

CPU

Instructions

DataregisterInterr

I/O Req

Dat

Detecting transfer completion Memory

rupt

quest

ta

completion Polling

Interrupt driven

Device

Interrupt driven

19

Page 20: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Interrupt Driven I/O (and Operating Systems)p ( p g y )

Hardware and software may trigger events Signaled by an interrupt Traps are specific software-generated interruptsaps a e spec c so t a e ge e ated te upts

Caused by an error (e.g. division by zero) Request a specific operating system service (system q p p g y ( y

call, monitor call)

Operating system handles events Immediately stop current computation Immediately stop current computation Execute interrupt service routine

On completion resume interrupted computation On completion resume interrupted computation20

Page 21: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Calling and Returning from Interrupt Handlersg g p

Modifying the program counter

Finding the matching interrupt handlerP d fi d b f i t t Predefined number of interrupts

Interrupt vector Stores start address of interrupt handler Stores start address of interrupt handler Indexed by unique interrupt number

Remember the return address Simple: Store return address in a register

S hi ti t d S t t k Sophisticated: System stack

Save and restore processor state! Save and restore processor state!21

Page 22: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Direct Memory Access (DMA)y ( ) Interrupt handling and high speed devices

A simplified example A simplified example 2 s for interrupt handling 4 s inter arrival time per byte CPU spends 50% of the time with interrupt handlingCPU spends 50% of the time with interrupt handling

SolutionT ansfe a block of data to/f om memo Transfer a block of data to/from memory

No CPU intervention Generate only one interrupt per block

Th i lifi d l f 1024 b bl k The simplified example for 1024 byte blocks Interrupt handling requires 100 * 2 / (4 * 1024) = 0.04%

Attention: However, DMA operation may slow down CPU

22

Page 23: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Accessing I/O Controllersg

I/O controllers include registers/ g Store commands and data being transferred

CPU may provide Special I/O instructions Data transfer between registers and memory

More convenient: memory-mapped I/Od f f Map device registers at a specific range of

memory addresses

23

Page 24: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Memory Mapped I/O Examplesy pp p

Screen locations mapped into memorypp y

S i l d ll l t Serial and parallel ports Write data to memory mapped data registery pp g Set Bit in memory mapped control register Device transfers data and clears the Bit Device transfers data and clears the Bit

24

Page 25: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Computer Architecture Recap

System OrganizationStorage and CachingI/O MechanismHardware Protection

Page 26: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Hardware Protection

Sharing requires hardware protectiong q p Example: Concurrent I/O access

Example: Memory modification Example: Memory modification Example: Infinite loops

Basic hardware mechanismsBasic hardware mechanisms Operation modes

Memory protection Memory protection Timers

26

Page 27: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Dual-Mode Operationp

Two separate execution modesp User mode: tasks on behalf of the user

Supervisor mode: task on behalf of the OS Supervisor mode: task on behalf of the OS Realized by a special mode bit (status register)

Privileged instructions: Privileged instructions:only executable in supervisor mode

27

Page 28: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Switching Between Modesg

System starts in supervisor mode Switch to user mode Start user program

Returning to supervisor mode Setting the mode bit? Solution: Set on interrupt or trap only

System calls (realized by software interrupt) Verify parameters Execute desired command Switch to user mode Continue with instruction after system call 28

Page 29: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Memory Protectiony

Dual-mode is not sufficientReplace handler address in interrupt vector Replace handler address in interrupt vector

Modify code of the interrupt service routine

Memory Protection required as well Protect interrupt vector Protect interrupt service routine

In general In general Protect operating system from user code Protect user code from one another

Two mechanisms (considered later in this course): t ti d isegmentation and paging

29

Page 30: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

CPU Protection with Timers

Prevention from infinite loopsI t t ft ifi d i d Interrupt after a specified period

Operating system gets control by interrupt handler Hardware timer modifications are privilegedp g

Timers are used for time sharing User gets CPU until the next timer interrupt Context switch on interrupt

save registers internal variables save registers, internal variables, … Continue next program on execution point where it previously left of

30

Page 31: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Evolved Concepts

Page 32: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Operating Systems over the past 50 Yearsp g y p

Evolution of operating systemsC l t f ti t Common elements of operating systems

Why have they developed as the have?

Main purposes Convenience for the user/applicationsConvenience for the user/applications Manage limited resources Possibly conflicting goals

Computer architecture and operating systemsI fl d h th Influenced each other

Operating systems to facilitate the use of hardware New hardware features to support operating systems New hardware features to support operating systems

32

Page 33: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframes

IBM System 360 33

Page 34: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframes

34

Page 35: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframes

35

Page 36: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframe Systems (some numbers…)y ( ) IBM System/360-44 (1966)

Clocking speed: 4MHz Clocking speed: 4MHz RAM: 32-256 kB

IBM System/360-195 1024-4096 kB 1024 4096 kB Model 195 purchase prices from $7 million to $12.5 million, depending on

configuration

Cite from Wikipedia: “The slowest System/360 models announced in 1964 ranged in speed from 0.0018 to 0.034 MIPS; the fastest System/360 models were approximately 50 times as fast with 8 kB and up to 8 MB of internal main memory”up to 8 MB of internal main memory” i.e.: max. approx 1,7 MIPS

(1.700.000 instructions per second)

Consider an old Intel 8080 CPU (1974): Clocking speed: 2MHz 0 64 MIPS H MIPS t l b 0.64 MIPS

36

However: MIPS must always beread careful when comparingdifferent architectures!

Page 37: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframe Systems (Batch)y ( )

I/O devices: card reader, tape drive, line printer card punch operatingprinter, card punch

System has to execute jobs

p gsystem

System has to execute jobs Described by punch cards No direct user interaction

Batched jobs to speed up processing user program

First rudimentary operating system Transfer control from a finished job to the

p garea

Transfer control from a finished job to the next one in the batch

Resident in Memory

37

Page 38: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframe Systems (Multiprogrammed)y ( p g ) Observation: IO is a bottleneck compared to CPU

operating Introduction of disk technology enables direct

access to several jobs

p gsystem

Idea: Multiprogramming Keep a subset S of all jobs in memory Execute one job in S until it gets blocked due to IO

job 1

Execute one job in S until it gets blocked due to IO Switch to a next non blocked job and so on … Jobs finishing to wait can get back the CPU job 2

Operating system features Job scheduling – which job gets into the memory CPU scheduling – the system must choose among

job 3 CPU scheduling the system must choose among

several jobs ready to run Memory management – the system must allocate

the memory to several jobsll i f d i

job 4 Allocation of devices

38

Page 39: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Mainframe Systems (Time-Sharing)y ( g)

Time-Sharing or MultitaskingExecute multiple jobs by switching among them periodically or on Execute multiple jobs by switching among them periodically or on blocking IO

High frequency of switching

Features Enables user interaction Many users can share a computer simultaneously

Important concepts Important concepts Process – executed program in memory Disk serves as a backing store for main memory

Vi t al memo abst a tion of the ph si al memo Virtual memory – abstraction of the physical memory Allows execution of a job not completely in memory A large abstract array of storage

39

Page 40: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Minicomputersp

DEC PDP-140

Page 41: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

The Term Mainframe and Minicomputer Todayp yemphasis is on job thoughput

IBM AS/400 Minicomputer (ISeries)IBM System z9 Mainframe (ZSeries) 41

Page 42: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Supercomputersp pemphasis is on number crunching

Cray-1 42

Page 43: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Supercomputersp p

43

Page 44: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Supercomputersp pfor more recent models see: http://www.top500.org/

IBM Blue Gene44

Page 45: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Desktop Systemsp y

Low hardware costs computer dedicated to one userM i i i d i Maximize convenience and responsiveness

In contrast to mainframes utilization of full capacity of CPU and IO devices is less important

(Responsiveness and full hardware utilization are conflicting goals)

Early PC CPUs Early PC CPUs Not suitable for multiuser and multitasking No protection mechanism The first operating systems: Macintosh OS, MS DOS

Meanwhile these features are provided Meanwhile these features are provided MS Windows, Mac OS X, Linux

45

Page 46: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Multiprocessor Systems (1)p y ( )

Also known as parallel or tightly coupled systemsM th More than one processor

Sharing the computer bus and clock Possibly sharing memory and peripheral devices Possibly sharing memory and peripheral devices

The main advantages The main advantages Increased throughput – speed up ratio for N

processors? (Amdahl’s Law)f Economy of scale – share peripherals, mass storage,

and power supply Increased reliability – failure of one processor will not Increased reliability failure of one processor will not

halt the system graceful degradation

fault tolerance (example HP NonStop) fault tolerance (example HP NonStop)

46

Page 47: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Multiprocessor Systems (2)p y ( ) Symmetric multiprocessing (SMP)

All processors are peersp p Load balancing Sharing of resources (Supported by all modern operating systems)

Asymmetric multiprocessing Each processor has an assigned task Master processor controls the systemp y

Schedule and allocate work for slave processors

Recent trendsMultiple compute cores Multiple compute cores

Blade servers47

Page 48: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Distributed Systemsy

Loosely coupled systems Collection of processors No shared memory or clock

C i i k Communication over a network

Network LAN, MAN, WAN, PAN, …

Network connectivity has become essential part of OS development

48

Page 49: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Distributed Systems: Client-Server, P2Py ,

Client Server Systems Server handles requests generated by clients Categories: compute-server, file-server

Peer-to-Peer Systems Peer to Peer Systems Computer may act as client or server Service provided by several nodes Service provided by several nodes Requires service discovery

centralized lookup servicecentralized lookup service broadcasting request

Example: file sharing, web services, …p g

49

Page 50: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Distributed Systems: OS Typesy yp

Network operating systemsp g y Computer acts autonomously

Provide message exchange between processes Provide message exchange between processes on different computersN t ki f t h t fil Networking features such as remote file access

Distributed operating systemProvides illusion of a single operating system Provides illusion of a single operating system

50

Page 51: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Clustered Systemsy

An alternative to expensive supercomputers

Coupling of individual computersp g p Sharing of secondary storage Closely linked via LAN networky

Asymmetric clusteringy g Redundant machine in hot-standby mode When server fails, hot-standby host becomes new When server fails, hot standby host becomes new

server Symmetric clusteringSymmetric clustering

Several hosts execute applications51

Page 52: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Real-Time Systemsy

Time requirements on processor operation Previously defined, fixed time constraints Result’s correctness depends on return time

Hard real-time system Hard real time system Guarantee that critical tasks are completed on time Requires well known bounded delays Requires well known bounded delays

Soft real time systems Soft real-time systems Critical real-time task gets priority over other ones

52

Page 53: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Handheld Systemsy

Challenges due to limited sizeS ll t f Small amount of memory Virtual memory required Not frequently applied

Slow processors Faster processor requires larger battery

Small input and output devices Small input and output devices Familiar task have to be condensed E.g. web clipping

Wireless technologies Radio, infrared

Tradeoff between limitations in functionality and convenience and portabilityconvenience and portability

53

Page 54: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

And more…

Embedded system –single-purpose computer built into a larger system for the purposes of controlling and monitoring the system. 54

Page 55: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Summary and References

Page 56: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

Summaryy

Operating System main goalsf d ll f b Support for good overall system performance by

scheduling computational activities Control (and protection) of available hardware Control (and protection) of available hardware

ressources in case of parallel processing Provide a convenient environment for execution

and development of programs Hardware support

Interrupts Execution modes

Vi t l Virtual memory IO access (e.g. memory mapped, DMA, ...)

56

Page 57: Introduction - Uni Koblenz-Landauunikorn/lehre/gdbs/ws12/01-introduction.pdf · manages the computer hardwaremanages the computer hardware. It also provides a basisIt also provides

References

Silberschatz, Galvin, Gagne, „Operating , , g , „ p gSystem Concepts“, Seventh Edition, Wiley, 20052005 Chapter 1 „Introduction“

57