Microkernel-based Operating Systems - Introduction

Size: px
Start display at page:

Download "Microkernel-based Operating Systems - Introduction"

Transcription

1 Faculty of Computer Science Institute for System Architecture, Operating Systems Group Microkernel-based Operating Systems - Introduction Nils Asmussen Dresden, Oct

2 Lecture Goals Provide deeper understanding of OS mechanisms Illustrate alternative OS design concepts Promote OS research at TU Dresden Make you all enthusiastic about OS development in general and microkernels in particular TU Dresden, MOS - Introduction Slide 2 von 47

3 Organization: Lecture Lecture every Tuesday, 4:40 PM, INF/E01 Slides: -> Teaching -> Microkernel-based Operating Systems Subscribe to our mailing list: This lecture is not: Microkernel construction (in summer term) TU Dresden, MOS - Introduction Slide 3 von 47

4 Organization: Exercises Exercises (roughly) bi-weekly Tuesday, 2:50 PM, INF/E08 Practical exercises in the computer lab Paper reading exercises Read a paper beforehand. Sum it up and prepare 3 questions. We expect you to actively participate in discussion. First exercise: next week Practical Exercise: Booting Room: to be announced TU Dresden, MOS - Introduction Slide 4 von 47

5 More Practical Stuff: Complex lab Complex lab in parallel to lecture Build several components of an OS Komplexpraktikum for (Media) Computer Science students Starts in 2 weeks, 2:50 PM, INF/E08 TU Dresden, MOS - Introduction Slide 5 von 47

6 Schedule Date Oct 09 Oct 16 Oct 23 Oct 30 Nov 06 Nov 13 Nov 30 Nov 27 Dec 04 Dec 11 Jan 8 Jan 15 Jan 22 Jan 30 Lecture Intro Threads & Synchronization IPC Memory Management Real-Time Device Drivers Resource Management Heterogeneous Systems Legacy Reuse Virtualization Secure Systems Trusted Computing Faults, Failures & Resilience Spare slot TU Dresden, MOS - Introduction Slide 6 von 47

7 Purpose of Operating Systems Manage the available resources Hardware (CPU, memory,...) Software (file systems, networking stack,...) Provide easier-to-use interface to access resources Unix: read/write data from/to sockets instead of fiddling with TCP/IP packets on your own Perform privileged / HW-specific operations x86: ring 0 vs. ring 3 Device drivers Provide separation and collaboration Isolate users / processes from each other Allow cooperation if needed (e.g., sending messages between processes) TU Dresden, Microkernels - Intro

8 Monolithic kernels: Linux User mode Application Application Application Application Kernel mode System-Call Interface Linux Kernel File Systems VFS File System Impl. Device Drivers Networking Sockets Protocols Processes Scheduling IPC Memory Management Page allocation Address spaces Swapping Hardware Access Hardware CPU, Memory, PCI, Devices TU Dresden, MOS - Introduction Slide 8 von 47

9 What's the problem? Security issues All components run in privileged mode. Direct access to all kernel-level data. Module loading easy living for rootkits. Resilience issues Faulty drivers can crash the whole system. 75% of today's OS kernels are drivers. Software-level issues Complexity is hard to manage. Custom OS for hardware with scarce resources? TU Dresden, Microkernels - Intro

10 The microkernel vision Minimal OS kernel less error prone small Trusted Computing Base suitable for verification System services in user-level servers flexible and extensible Protection between individual components More resilient crashing component does not (necessarily...) crash the whole system More secure inter-component protection TU Dresden, Microkernels - Intro

11 The microkernel vision User mode Application Application Application Application File Systems VFS File System Impl. Device Drivers Networking Sockets Protocols Memory Management Page allocation Swapping Kernel mode Microkernel System-Call Interface Hardware Access Address Spaces Threads Scheduling IPC Hardware CPU, Memory, PCI, Devices TU Dresden, MOS - Introduction Slide 11 von 47

12 What microkernels can give us... OS personalities Customizability Servers may be configured to suit the target system (small embedded systems, desktop PCs, SMP systems, ) Remove unneeded servers Enforce reasonable system design Well-defined interfaces between components No access to components besides these interfaces Improved maintainability TU Dresden, MOS - Introduction Slide 12 von 47

13 The mother of all microkernels Mach developed at CMU, Rick Rashid (former head of MS Research) Avie Tevanian (former Apple CTO) Brian Bershad U. of Washington) Foundation for several real systems Single Server Unix (BSD4.3 on Mach) MkLinux (OSF) IBM Workplace OS NeXT OS Mac OS X TU Dresden, MOS - Introduction Slide 13 von 47

14 Mach: Technical details Simple, extensible communication kernel Everything is a pipe. ports as secure communication channels Multiprocessor support Message passing by mapping Multi-server OS personality POSIX-compatibility Shortcomings performance drivers still in the kernel TU Dresden, MOS - Introduction Slide 14 von 47

15 Case study: IBM Workplace OS Main goals: multiple OS personalities run on multiple HW architectures Win Apps Unix Apps OS/2 Apps Windows Personality Unix Personality OS/2 Personality Network Processes Power... Files OS base services Mach microkernel ARM PPC x86 MIPS Alpha TU Dresden, MOS - Introduction Slide 15 von 47

16 IBM Workplace OS: Why did it fail? Never finished (but spent 1 billion $) Failure causes: Underestimated difficulties in creating OS personalities Management errors, forced divisions to adopt new system without having a system Second System Effect : too many fancy features Too slow Conclusion: Microkernel worked, but system atop the microkernel did not TU Dresden, MOS - Introduction Slide 16 von 47

17 IBM Workplace OS: Lessons learned OS personalities did not work Flexibility but monolithic kernels became flexible, too (Linux kernel modules) Better design but monolithic kernels also improved (restricted symbol access, layered architectures) Maintainability still very complex Performance matters a lot TU Dresden, MOS - Introduction Slide 17 von 47

18 Microkernels: Proven advantages Subsystem protection / isolation Code size Microkernel-based OS Fiasco kernel: ~ 34,000 LoC HelloWorld (+boot loader +root task): ~ 10,000 LoC Linux kernel (3.0.4., x86 architecture): Kernel: ~ 2.5 million LoC +drivers: ~ 5.4 million LoC (generated using David A. Wheeler's 'SLOCCount') Customizability Tailored memory management / scheduling / algorithms Adaptable to embedded / real-time / secure / systems TU Dresden, MOS - Introduction Slide 18 von 47

19 Challenges We need fast and efficient kernels covered in the Microkernel construction lecture in the summer term We need fast and efficient OS services Memory and resource management Synchronization Device Drivers File systems Communication interfaces Subject of this lecture TU Dresden, MOS - Introduction Slide 19 von 47

20 Who is (or was) out there? FU Amsterdam (Andrew Tanenbaum) MS Research Johns Hopkins University The L4 Microkernel Family Originally developed by Jochen Liedtke at IBM and GMD 2 nd generation microkernel Several kernel ABI versions TU Dresden, MOS - Introduction Slide 20 von 47

21 The L4 family a timeline (or tree...) N1 N2 SeL4 SeL4 University of New South Wales / NICTA / Open Kernel Labs NICTA:: Pistachio-embedded OKL4v2 OKL4 L4/x86 L2, L3 v2 x0 x2/v4 ABI Specification Implementation University of Karlsruhe L4Ka::Hazelnut L4Ka::Pistachio Fiasco/L4v2 Nova Fiasco OC Nova TU Dresden L4.Sec Fiasco/L4.Fiasco Fiasco.OC TU Dresden, MOS - Introduction Slide 21 von 47

22 L4 concepts Jochen Liedtke: A microkernel does no real work. Kernel only provides inevitable mechanisms. Kernel does not enforce policies. But what is inevitable? Abstractions Threads Address spaces (tasks) Mechanisms Communication Resource mapping (Scheduling) TU Dresden, Microkernels - Intro

23 Taking a closer look at L4 Case study: L4/Fiasco.OC TU Dresden, MOS - Introduction Slide 23 von 47

24 Case study: L4/Fiasco.OC Everything is an object Task Address spaces Thread Activities, scheduling IPC Gate Communication, resource mapping IRQ Communication Factory Create other objects, enforce resource quotas One system call: invoke_object() Parameters passed in UTCB Types of parameters depend on type of object TU Dresden, MOS - Introduction Slide 24 von 47

25 L4/Fiasco.OC: Types of Objects Kernel-provided objects Threads Tasks IRQs Generic communication object: IPC gate Send message from sender to receiver Used to implement new objects in user-level applications TU Dresden, Microkernels - Intro

26 L4/Fiasco.OC: User-level objects Everything above kernel built using user-level objects that provide a service Networking stack File system call()... Client Service 1 call() Kernel provides Object creation/management Object interaction: Inter-Process Communication (IPC) Service 2 call() TU Dresden, Microkernels - Intro

27 L4/Fiasco.OC: How to call objects? To call an object, we need an address: Telephone number Postal address IP address... call(service1.id) Client Service 1 Kernel Simple idea, right? ID is wrong? Kernel returns ENOTEXIST But not so fast! This scheme is insecure: Client could simply guess IDs brute-force. Existence/non-existence can be used as a covert channel TU Dresden, Microkernels - Intro

28 L4/Fiasco.OC: Local names for objects Global object IDs are insecure (forgery, covert channels). inconvenient (programmer needs to know about partitioning in advance) Solution in Fiasco.OC Task-local capability space as an indirection Object capability required to invoke object Per-task name space Maps names to object capabilities. Configured by task's creator TU Dresden, MOS - Introduction Slide 28 von 47

29 Capabilities / Local Names Indirection allows for security and flexibility. Address Space Address Space Address Space TU Dresden, Fiasco/OC & L4Re Slide 29 von 47

30 L4/Fiasco.OC: Object capabilities Capability: Reference to an object Protected by the Fiasco.OC kernel Kernel knows all capability-object mappings. Managed as a per-process capability table. User processes only use indexes into this table. Client Service 1 invoke(capability(3)) IPC Gate: communication channel for Service 1 Kernel TU Dresden, Microkernels - Intro

31 L4/Fiasco.OC: Communication Kernel object for communication: IPC gate Inter-process communication (IPC) Between threads Synchronous Communication using IPC gate: Sender thread puts message into its UTCB Sender invokes IPC gate, blocks sender until receiver ready (i.e., waits for message) Kernel copies message to receiver thread's UTCB Both continue, knowing that message has been transferred/received TU Dresden, MOS - Introduction Slide 31 von 47

32 More L4 concepts TU Dresden, MOS - Introduction Slide 32 von 47

33 L4/Fiasco.OC: Threads Thread Unit of Execution Implemented as kernel object Properties managed by the kernel: Instruction Pointer (EIP) Stack (ESP) Registers User-level TCB User-level applications need to allocate stack memory provide memory for application binary find entry point... Address Space Code Data UTCBs Stack Stack Threads TU Dresden, MOS - Introduction Slide 33 von 47

34 L4/Fiasco.OC: Interrupts Kernel object: IRQ Used for hardware and software interrupts Provides asynchronous signaling invoke_object(irq_cap, WAIT) invoke_object(irq_cap, TRIGGER) IRQ Kernel invoke_object (irq_cap,...) User-space device driver Image source: TU Dresden, MOS - Introduction Slide 34 von 47

35 Problem: Memory partitioning App1 App2 App3 4 GB 0 Physical Memory TU Dresden, MOS - Introduction Slide 35 von 47

36 Solution: Virtual Memory App1 App2 App3 4 GB 0 Physical Memory TU Dresden, MOS - Introduction Slide 36 von 47

37 L4: Recursive address spaces RAM Physical Address Space Device Memory TU Dresden, MOS - Introduction Slide 37 von 47

38 L4: Resource Mappings If a thread has access to a capability, it can map this capability to another thread Mapping / not mapping of capabilities used for implementing access control Abstraction for mapping: flexpage Flexpages describe mapping location and size of resource receiver's rights (read-only, mappable) type (memory, I/O, communication capability) TU Dresden, MOS - Introduction Slide 38 von 47

39 L4/Fiasco.OC: Object types Summary of object types Task Thread IPC Gate IRQ Factory Each task gets initial set of capabilities for some of these objects at startup TU Dresden, MOS - Introduction Slide 39 von 47

40 Building microkernel-based systems What can we build with all this? TU Dresden, MOS - Introduction Slide 40 von 47

41 Kernel vs. Operating System Fiasco.OC is not a full operating system! No device drivers (except UART + timer) No file system / network stack / A microkernel-based OS needs to add these services as user-level components L4Re uclibc libstdc++... IPC Client/Server Framework User-level libraries Ned Init-style task loader Moe Sigma0 L4Re L4 Runtime Environment User mode Kernel mode Basic Resource Manager(s) Fiasco.OC TU Dresden, MOS - Introduction Slide 41 von 47

42 Linux on L4 Application Application Application Application L4 Task L4 Task L4 Task L4 Task System-Call Interface arch-dep Linux Kernel File Systems VFS File System Impl. Device Drivers Networking Sockets Protocols Processes Scheduling IPC Memory Management Page allocation Address spaces Swapping Archindep. Hardware Access arch-dep L4 Task User mode Runtime Environment (L4Re) Kernel mode Fiasco.OC Hardware TU Dresden, MOS - Introduction Slide 42 von 47

43 The Dresden Real-Time Operating System Apps Time service RT Apps L4Linux Network driver SCSI driver Display driver User Mode Privileged Mode Non-RT World RT World Resource Management Layer (L4Re) Fiasco.OC microkernel TU Dresden, MOS - Introduction Slide 43 von 47

44 Virtual machines Isolate not only processes, but also complete Operating Systems (compartments) Server consolidation Apps Apps Apps L4Linux L4Linux Native Linux VMM User Mode Privileged Mode Virtualization Layer (L4Re) Fiasco.OC microkernel TU Dresden, MOS - Introduction Slide 44 von 47

45 Genode Genode := C++-based OS framework developed here in Dresden Aim: hierarchical system in order to Support resource partitioning Layer security policies on top of each other Genode::Core Parent 1 Parent 2 Child Child Child Child Child TU Dresden, MOS - Introduction Slide 45 von 47

46 Lecture outline Basic mechanisms and concepts Memory management Tasks, Threads, Synchronization Communication Building real systems What are resources and how to manage them? How to build a secure system? How to build a real-time system? How to reuse existing code (Linux, standard system libraries, device drivers)? How to improve robustness and safety? TU Dresden, MOS - Introduction Slide 46 von 47

47 Outlook Next lecture: Threads & Synchronization Next week (Oct 16, 4:40 PM) First exercise: Practical Exercise: Booting Room will be announced on mailing list TU Dresden, MOS - Introduction Slide 47 von 47

Microkernel-based Operating Systems - Introduction

Microkernel-based Operating Systems - Introduction Faculty of Computer Science Institute for System Architecture, Operating Systems Group Microkernel-based Operating Systems - Introduction Carsten Weinhold Dresden, Oct 09 th 2012 Lecture Goals Provide

More information

Microkernel-based Operating Systems - Introduction

Microkernel-based Operating Systems - Introduction Faculty of Computer Science Institute for System Architecture, Operating Systems Group Microkernel-based Operating Systems - Introduction Björn Döbel Dresden, Oct 14 th 2008 Lecture Goals Provide deeper

More information

Microkernel Construction. Introduction. Michael Hohmuth. Lars Reuther. TU Dresden Operating Systems Group

Microkernel Construction. Introduction. Michael Hohmuth. Lars Reuther. TU Dresden Operating Systems Group Introduction Lecture Goals Provide deeper understanding of OS mechanisms Make all of you enthusiastic kernel hackers Illustrate alternative system design concepts Promote OS research at 2 Administration

More information

Microkernel Construction

Microkernel Construction Introduction SS2013 Class Goals Provide deeper understanding of OS mechanisms Introduce L4 principles and concepts Make you become enthusiastic L4 hackers Propaganda for OS research at 2 Administration

More information

MICROKERNEL CONSTRUCTION 2014

MICROKERNEL CONSTRUCTION 2014 MICROKERNEL CONSTRUCTION 2014 THE FIASCO.OC MICROKERNEL Alexander Warg MICROKERNEL CONSTRUCTION 1 FIASCO.OC IN ONE SLIDE CAPABILITY-BASED MICROKERNEL API single system call invoke capability MULTI-PROCESSOR

More information

Faculty of Computer Science, Operating Systems Group. The L4Re Microkernel. Adam Lackorzynski. July 2017

Faculty of Computer Science, Operating Systems Group. The L4Re Microkernel. Adam Lackorzynski. July 2017 Faculty of Computer Science, Operating Systems Group The L4Re Microkernel Adam Lackorzynski July 2017 2 Agenda Plan What is L4Re? History The L4Re Microkernel / Hypervisor Fiasco Interfaces SMP Virtualization...

More information

Introduction. COMP9242 Advanced Operating Systems 2010/S2 Week 1

Introduction. COMP9242 Advanced Operating Systems 2010/S2 Week 1 Introduction COMP9242 Advanced Operating Systems 2010/S2 Week 1 2010 Gernot Heiser UNSW/NICTA/OK Labs. Distributed under Creative Commons Attribution License 1 Copyright Notice These slides are distributed

More information

Introduction. COMP /S2 Week Gernot Heiser UNSW/NICTA/OKL. Distributed under Creative Commons Attribution License 1

Introduction. COMP /S2 Week Gernot Heiser UNSW/NICTA/OKL. Distributed under Creative Commons Attribution License 1 Introduction COMP9242 2008/S2 Week 1 2008 Gernot Heiser UNSW/NICTA/OKL. Distributed under Creative Commons Attribution License 1 Copyright Notice These slides are distributed under the Creative Commons

More information

Faculty of Computer Science Institute for System Architecture, Operating Systems Group. Memory. Björn Döbel. Dresden,

Faculty of Computer Science Institute for System Architecture, Operating Systems Group. Memory. Björn Döbel. Dresden, Faculty of Computer Science Institute for System Architecture, Operating Systems Group Memory Björn Döbel Dresden, 2013-11-05 So far... Introduction Monolithic vs. microkernels L4 concepts: Threads and

More information

Inter-Process Communication

Inter-Process Communication Faculty of Computer Science Institute for System Architecture, Operating Systems Group Inter-Process Communication Björn Döbel Dresden, So far... Microkernels as a design alternative Flexibility Security

More information

Inter-Process Communication

Inter-Process Communication Faculty of Computer Science Institute for System Architecture, Operating Systems Group Inter-Process Communication Nils Asmussen Dresden, So far... Microkernels as a design alternative Flexibility Security

More information

Inter-Process Communication

Inter-Process Communication Faculty of Computer Science Institute for System Architecture, Operating Systems Group Inter-Process Communication Björn Döbel Dresden, So far... Microkernels Basic resources in an operating system Tasks

More information

RESOURCE MANAGEMENT MICHAEL ROITZSCH

RESOURCE MANAGEMENT MICHAEL ROITZSCH Faculty of Computer Science Institute of Systems Architecture, Operating Systems Group RESOURCE MANAGEMENT MICHAEL ROITZSCH AGENDA done: time, drivers today: misc. resources architectures for resource

More information

Björn Döbel. Microkernel-Based Operating Systems. Exercise 3: Virtualization

Björn Döbel. Microkernel-Based Operating Systems. Exercise 3: Virtualization Faculty of Computer Science Institute for System Architecture, Operating Systems Group Björn Döbel Microkernel-Based Operating Systems Exercise 3: Virtualization Emulation Virtualization Emulation / Simulation

More information

Faculty of Computer Science Institute for System Architecture, Operating Systems Group. Complex Lab Operating Systems 2016 Winter Term.

Faculty of Computer Science Institute for System Architecture, Operating Systems Group. Complex Lab Operating Systems 2016 Winter Term. Faculty of Computer Science Institute for System Architecture, Operating Systems Group Complex Lab Operating Systems 2016 Winter Term Introduction Requirements Basic Operating Systems Know-How Virtual

More information

RESOURCE MANAGEMENT MICHAEL ROITZSCH

RESOURCE MANAGEMENT MICHAEL ROITZSCH Faculty of Computer Science Institute of Systems Architecture, Operating Systems Group RESOURCE MANAGEMENT MICHAEL ROITZSCH AGENDA done: time, drivers today: misc. resources architectures for resource

More information

THREADS ADMINISTRIVIA RECAP ALTERNATIVE 2 EXERCISES PAPER READING MICHAEL ROITZSCH 2

THREADS ADMINISTRIVIA RECAP ALTERNATIVE 2 EXERCISES PAPER READING MICHAEL ROITZSCH 2 Department of Computer Science Institute for System Architecture, Operating Systems Group THREADS ADMINISTRIVIA MICHAEL ROITZSCH 2 EXERCISES due to date and room clashes we have to divert from our regular

More information

VIRTUALIZATION. Dresden, 2011/12/6. Julian Stecklina

VIRTUALIZATION. Dresden, 2011/12/6. Julian Stecklina Department of Computer Science Institute of Systems Architecture, Operating Systems Group VIRTUALIZATION Julian Stecklina (jsteckli@os.inf.tu-dresden.de) Dresden, 2011/12/6 00 Goals Give you an overview

More information

MICROKERNELS: MACH AND L4

MICROKERNELS: MACH AND L4 1 MICROKERNELS: MACH AND L4 CS6410 Hakim Weatherspoon Introduction to Kernels Different Types of Kernel Designs Monolithic kernel Microkernel Hybrid Kernel Exokernel Virtual Machines? Monolithic Kernels

More information

Microkernels and Portability. What is Portability wrt Operating Systems? Reuse of code for different platforms and processor architectures.

Microkernels and Portability. What is Portability wrt Operating Systems? Reuse of code for different platforms and processor architectures. Microkernels and Portability What is Portability wrt Operating Systems? Reuse of code for different platforms and processor architectures. Contents Overview History Towards Portability L4 Microkernels

More information

Memory, IPC, and L4Re

Memory, IPC, and L4Re Faculty of Computer Science Institute for System Architecture, Operating Systems Group Memory, IPC, and L4Re Björn Döbel What we talked about so far Microkernels Fiasco.OC Threads in Fiasco.OC Lecture

More information

The Performance of µ-kernel-based Systems

The Performance of µ-kernel-based Systems Liedtke et al. presented by: Ryan O Connor October 7 th, 2009 Motivation By this time (1997) the OS research community had virtually abandoned research on pure µ-kernels. due primarily

More information

Faculty of Computer Science Institute for System Architecture, Operating Systems Group. Virtualization. Henning Schild. Dresden,

Faculty of Computer Science Institute for System Architecture, Operating Systems Group. Virtualization. Henning Schild. Dresden, Faculty of Computer Science Institute for System Architecture, Operating Systems Group Virtualization Henning Schild Dresden, 2009-12-01 So Far... Basics Introduction Threads & synchronization Memory Real-time

More information

Advanced Operating Systems. COMP9242 Introduction

Advanced Operating Systems. COMP9242 Introduction Advanced Operating Systems COMP9242 Introduction Staff Lecturer in Charge Gernot Heiser Lecturer Kevin Elphinstone Various Support Staff TBA 2 Why are you here? You ve done comp3231 Did well (minimum credit)

More information

Lecture Topics. Announcements. Today: Operating System Overview (Stallings, chapter , ) Next: Processes (Stallings, chapter

Lecture Topics. Announcements. Today: Operating System Overview (Stallings, chapter , ) Next: Processes (Stallings, chapter Lecture Topics Today: Operating System Overview (Stallings, chapter 2.1-2.4, 2.8-2.10) Next: Processes (Stallings, chapter 3.1-3.6) 1 Announcements Consulting hours posted Self-Study Exercise #3 posted

More information

Staff. Advanced Operating Systems. Why are you here? What can you expect?

Staff. Advanced Operating Systems. Why are you here? What can you expect? Staff Advanced Operating Systems COMP9242 Introduction Lecturer in Charge Gernot Heiser Lecturer Kevin Elphinstone Various Support Staff TBA 2 Why are you here? You ve done comp3231 Did well (minimum credit)

More information

The L4 microkernel. Garland, Mehta, Roehricht, Schulze. CS-450 Section 3 Operating Systems Fall 2003 James Madison University Harrisonburg, VA

The L4 microkernel. Garland, Mehta, Roehricht, Schulze. CS-450 Section 3 Operating Systems Fall 2003 James Madison University Harrisonburg, VA Garland, Mehta, Roehricht, Schulze The L4 microkernel Harrisonburg, November 29, 2003 CS-450 Section 3 Operating Systems Fall 2003 James Madison University Harrisonburg, VA Contents 1 An Introduction to

More information

Four Components of a Computer System

Four Components of a Computer System Four Components of a Computer System Operating System Concepts Essentials 2nd Edition 1.1 Silberschatz, Galvin and Gagne 2013 Operating System Definition OS is a resource allocator Manages all resources

More information

Real Time and Embedded Systems. by Dr. Lesley Shannon Course Website:

Real Time and Embedded Systems. by Dr. Lesley Shannon   Course Website: Real Time and Embedded Systems by Dr. Lesley Shannon Email: lshannon@ensc.sfu.ca Course Website: http://www.ensc.sfu.ca/~lshannon/courses/ensc351 Simon Fraser University Slide Set: 2 Date: September 13,

More information

Transplantation of VirtualBox to the NOVA microhypervisor. Norman Feske

Transplantation of VirtualBox to the NOVA microhypervisor. Norman Feske Transplantation of VirtualBox to the NOVA microhypervisor Norman Feske Outline 1. VirtualBox 2. NOVA microhypervisor and Genode 3. Steps 4. Demo + Outlook 5. War stories

More information

The Challenges of X86 Hardware Virtualization. GCC- Virtualization: Rajeev Wankar 36

The Challenges of X86 Hardware Virtualization. GCC- Virtualization: Rajeev Wankar 36 The Challenges of X86 Hardware Virtualization GCC- Virtualization: Rajeev Wankar 36 The Challenges of X86 Hardware Virtualization X86 operating systems are designed to run directly on the bare-metal hardware,

More information

Facing the Reality: Virtualization in a Microkernelbased Operating System. Matthias Lange, MOS, January 26th, 2016

Facing the Reality: Virtualization in a Microkernelbased Operating System. Matthias Lange, MOS, January 26th, 2016 Facing the Reality: Virtualization in a Microkernelbased Operating System Matthias Lange, MOS, January 26th, 2016 matthias.lange@kernkonzept.com Today's take aways Microkernel systems are used to build

More information

General-purpose computing with VirtualBox on Genode/NOVA. Norman Feske

General-purpose computing with VirtualBox on Genode/NOVA. Norman Feske General-purpose computing with VirtualBox on Genode/NOVA Norman Feske Outline 1. VirtualBox 2. NOVA microhypervisor and Genode 3. Transplantation of VirtualBox to NOVA 4.

More information

Advanced Operating Systems. COMP9242 Introduction

Advanced Operating Systems. COMP9242 Introduction Advanced Operating Systems COMP9242 Introduction Staff Lecturer in Charge Gernot Heiser Lecturer Kevin Elphinstone Various Support Staff TBA 2 Why are you here? You ve done comp3231 Did well (minimum credit)

More information

L4/Darwin: Evolving UNIX. Charles Gray Research Engineer, National ICT Australia

L4/Darwin: Evolving UNIX. Charles Gray Research Engineer, National ICT Australia L4/Darwin: Evolving UNIX Charles Gray Research Engineer, National ICT Australia charles.gray@nicta.com.au Outline 1. Project Overview 2. BSD on the Mach microkernel 3. Porting Darwin to the L4 microkernel

More information

ECE 550D Fundamentals of Computer Systems and Engineering. Fall 2017

ECE 550D Fundamentals of Computer Systems and Engineering. Fall 2017 ECE 550D Fundamentals of Computer Systems and Engineering Fall 2017 The Operating System (OS) Prof. John Board Duke University Slides are derived from work by Profs. Tyler Bletsch and Andrew Hilton (Duke)

More information

OS concepts and structure. q OS components & interconnects q Structuring OSs q Next time: Processes

OS concepts and structure. q OS components & interconnects q Structuring OSs q Next time: Processes OS concepts and structure q OS components & interconnects q Structuring OSs q Next time: Processes OS Views Perspectives, OS as the services it provides its components and interactions Services to Users

More information

OS DESIGN PATTERNS II. CS124 Operating Systems Fall , Lecture 4

OS DESIGN PATTERNS II. CS124 Operating Systems Fall , Lecture 4 OS DESIGN PATTERNS II CS124 Operating Systems Fall 2017-2018, Lecture 4 2 Last Time Began discussing general OS design patterns Simple structure (MS-DOS) Layered structure (The THE OS) Monolithic kernels

More information

Alexander Warg. Complex Lab Operating System 2007 Winter Term. Introduction

Alexander Warg. Complex Lab Operating System 2007 Winter Term. Introduction Faculty of Computer Science Institute for System Architecture, Operating Systems Group Alexander Warg Complex Lab Operating System 2007 Winter Term Introduction Requirements Basic Operating Systems Know-How

More information

RESOURCE MANAGEMENT MICHAEL ROITZSCH

RESOURCE MANAGEMENT MICHAEL ROITZSCH Department of Computer Science Institute for System Architecture, Operating Systems Group RESOURCE MANAGEMENT MICHAEL ROITZSCH AGENDA done: time, drivers today: misc. resources architectures for resource

More information

Creating a Practical Security Architecture Based on sel4

Creating a Practical Security Architecture Based on sel4 Creating a Practical Security Architecture Based on sel4 Xinming (Simon) Ou University of South Florida (many slides borrowed/adapted from my student Daniel Wang) 1 Questions for sel4 Community Is there

More information

1 System & Activities

1 System & Activities 1 System & Activities Gerd Liefländer 23. April 2009 System Architecture Group 2009 Universität Karlsruhe (TU), System Architecture Group 1 Roadmap for Today & Next Week System Structure System Calls (Java)

More information

Embedded Linux Architecture

Embedded Linux Architecture Embedded Linux Architecture Types of Operating Systems Real-Time Executive Monolithic Kernel Microkernel Real-Time Executive For MMU-less processors The entire address space is flat or linear with no memory

More information

Operating System Structure

Operating System Structure Operating System Structure Heechul Yun Disclaimer: some slides are adopted from the book authors slides with permission Recap OS needs to understand architecture Hardware (CPU, memory, disk) trends and

More information

Introducing Genode. Norman Feske Genode Labs

Introducing Genode. Norman Feske Genode Labs Introducing Genode Norman Feske Genode Labs FOSDEM Feb 4, 2012 Overview 1. Why do we need another operating system? 2. Genode OS architecture at a glance 3. Features of the framework 4. Showcases 5. Plans

More information

Roadmap. Tevfik Koşar. CSE 421/521 - Operating Systems Fall Lecture - II OS Structures. University at Buffalo. OS Design and Implementation

Roadmap. Tevfik Koşar. CSE 421/521 - Operating Systems Fall Lecture - II OS Structures. University at Buffalo. OS Design and Implementation CSE 421/521 - Operating Systems Fall 2013 Lecture - II OS Structures Tevfik Koşar University at Buffalo August 29 th, 2013 1 Roadmap OS Design and Implementation Different Design Approaches Major OS Components!

More information

OS Design Approaches. Roadmap. System Calls. Tevfik Koşar. Operating System Design and Implementation. CSE 421/521 - Operating Systems Fall 2013

OS Design Approaches. Roadmap. System Calls. Tevfik Koşar. Operating System Design and Implementation. CSE 421/521 - Operating Systems Fall 2013 CSE 421/521 - Operating Systems Fall 2013 Lecture - II OS Structures Roadmap OS Design and Implementation Different Design Approaches Major OS Components!! Memory management! CPU Scheduling! I/O Management

More information

Operating System Architecture. CS3026 Operating Systems Lecture 03

Operating System Architecture. CS3026 Operating Systems Lecture 03 Operating System Architecture CS3026 Operating Systems Lecture 03 The Role of an Operating System Service provider Provide a set of services to system users Resource allocator Exploit the hardware resources

More information

Staff. Advanced Operating Systems. Why are you here? What can you expect?

Staff. Advanced Operating Systems. Why are you here? What can you expect? Staff Advanced Operating Systems COMP9242 Introduction Lecturer in Charge Gernot Heiser Lecturer Kevin Elphinstone Various Support Staff TBA 2 Why are you here? You ve done comp3231 Did well (minimum credit)

More information

OS Design Approaches. Roadmap. OS Design Approaches. Tevfik Koşar. Operating System Design and Implementation

OS Design Approaches. Roadmap. OS Design Approaches. Tevfik Koşar. Operating System Design and Implementation CSE 421/521 - Operating Systems Fall 2012 Lecture - II OS Structures Roadmap OS Design and Implementation Different Design Approaches Major OS Components!! Memory management! CPU Scheduling! I/O Management

More information

Operating Systems. Operating System Structure. Lecture 2 Michael O Boyle

Operating Systems. Operating System Structure. Lecture 2 Michael O Boyle Operating Systems Operating System Structure Lecture 2 Michael O Boyle 1 Overview Architecture impact User operating interaction User vs kernel Syscall Operating System structure Layers Examples 2 Lower-level

More information

CSC Operating Systems Fall Lecture - II OS Structures. Tevfik Ko!ar. Louisiana State University. August 27 th, 2009.

CSC Operating Systems Fall Lecture - II OS Structures. Tevfik Ko!ar. Louisiana State University. August 27 th, 2009. CSC 4103 - Operating Systems Fall 2009 Lecture - II OS Structures Tevfik Ko!ar Louisiana State University August 27 th, 2009 1 Announcements TA Changed. New TA: Praveenkumar Kondikoppa Email: pkondi1@lsu.edu

More information

Announcements. Computer System Organization. Roadmap. Major OS Components. Processes. Tevfik Ko!ar. CSC Operating Systems Fall 2009

Announcements. Computer System Organization. Roadmap. Major OS Components. Processes. Tevfik Ko!ar. CSC Operating Systems Fall 2009 CSC 4103 - Operating Systems Fall 2009 Lecture - II OS Structures Tevfik Ko!ar TA Changed. New TA: Praveenkumar Kondikoppa Email: pkondi1@lsu.edu Announcements All of you should be now in the class mailing

More information

Microkernels and Client- Server Architectures

Microkernels and Client- Server Architectures Microkernels and Client- Server Architectures I m not interested in making devices look like user-level. They aren t, they shouldn t, and microkernels are just stupid. Linus Torwalds 1 Motivation Early

More information

Operating System Structure

Operating System Structure Operating System Structure Heechul Yun Disclaimer: some slides are adopted from the book authors slides with permission Recap: Memory Hierarchy Fast, Expensive Slow, Inexpensive 2 Recap Architectural support

More information

Fault Isolation for Device Drivers

Fault Isolation for Device Drivers Fault Isolation for Device Drivers 39 th International Conference on Dependable Systems and Networks, 30 June 2009, Estoril Lisbon, Portugal Jorrit N. Herder Vrije Universiteit Amsterdam ~26% of Windows

More information

OS Extensibility: SPIN and Exokernels. Robert Grimm New York University

OS Extensibility: SPIN and Exokernels. Robert Grimm New York University OS Extensibility: SPIN and Exokernels Robert Grimm New York University The Three Questions What is the problem? What is new or different? What are the contributions and limitations? OS Abstraction Barrier

More information

Overview of Unix / Linux operating systems

Overview of Unix / Linux operating systems Overview of Unix / Linux operating systems Mohammad S. Hasan Staffordshire University, UK Overview of Unix / Linux operating systems Slide 1 Lecture Outline History and development of Unix / Linux Early

More information

Part 1: Introduction to device drivers Part 2: Overview of research on device driver reliability Part 3: Device drivers research at ERTOS

Part 1: Introduction to device drivers Part 2: Overview of research on device driver reliability Part 3: Device drivers research at ERTOS Some statistics 70% of OS code is in device s 3,448,000 out of 4,997,000 loc in Linux 2.6.27 A typical Linux laptop runs ~240,000 lines of kernel code, including ~72,000 loc in 36 different device s s

More information

COS 318: Operating Systems. Virtual Machine Monitors

COS 318: Operating Systems. Virtual Machine Monitors COS 318: Operating Systems Virtual Machine Monitors Prof. Margaret Martonosi Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall11/cos318/ Announcements Project

More information

AN OVERVIEW OF MINIX 3

AN OVERVIEW OF MINIX 3 AN OVERVIEW OF MINIX 3 NICTA seminar, 20 Oct. 2008 Sydney, Australia Jorrit N. Herder Vrije Universiteit Amsterdam There are no significant bugs in our released software that any significant number of

More information

Processes and Threads

Processes and Threads COS 318: Operating Systems Processes and Threads Kai Li and Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall13/cos318 Today s Topics u Concurrency

More information

W4118 Operating Systems. Junfeng Yang

W4118 Operating Systems. Junfeng Yang W4118 Operating Systems Junfeng Yang What is a process? Outline Process dispatching Common process operations Inter-process Communication What is a process Program in execution virtual CPU Process: an

More information

Chapter 5: Microkernels and fast local IPC Advanced Operating Systems ( L)

Chapter 5: Microkernels and fast local IPC Advanced Operating Systems ( L) Chapter 5: Microkernels and fast local IPC Advanced Operating Systems (263 3800 00L) Timothy Roscoe Herbstsemester 2012 http://www.systems.ethz.ch/education/courses/hs11/aos/ Systems Group Department of

More information

Process and Its Image An operating system executes a variety of programs: A program that browses the Web A program that serves Web requests

Process and Its Image An operating system executes a variety of programs: A program that browses the Web A program that serves Web requests Recap of the Last Class System protection and kernel mode System calls and the interrupt interface Processes Process concept A process s image in a computer Operations on processes Context switches and

More information

Operating Systems ( )

Operating Systems ( ) Operating Systems (202-1-3031) Meni Adler Office: Alon, 109 meni.adler@gmail.com Office hours: Tuesdays, 08:00-10:00 Danny Hendler Office: Alon, 218 hendlerd@cs.bgu.ac.il Office hours: Tuesdays, 11:00-13:00

More information

L4 Development using Iguana

L4 Development using Iguana L4 Development using Iguana Ben Leslie Embedded, Real-Time and Operating Systems Program National ICT Australia August 2004 1 c National ICT Australia, 2004 OVERVIEW Last time we covered the basics of

More information

Machine-Independent Virtual Memory Management for Paged June Uniprocessor 1st, 2010and Multiproce 1 / 15

Machine-Independent Virtual Memory Management for Paged June Uniprocessor 1st, 2010and Multiproce 1 / 15 Machine-Independent Virtual Memory Management for Paged Uniprocessor and Multiprocessor Architectures Matthias Lange TU Berlin June 1st, 2010 Machine-Independent Virtual Memory Management for Paged June

More information

CPSC 341 OS & Networks. Introduction. Dr. Yingwu Zhu

CPSC 341 OS & Networks. Introduction. Dr. Yingwu Zhu CPSC 341 OS & Networks Introduction Dr. Yingwu Zhu What to learn? Concepts Processes, threads, multi-processing, multithreading, synchronization, deadlocks, CPU scheduling, networks, security Practice:

More information

Operating Systems Structure and Processes Lars Ailo Bongo Spring 2017 (using slides by Otto J. Anshus University of Tromsø/Oslo)

Operating Systems Structure and Processes Lars Ailo Bongo Spring 2017 (using slides by Otto J. Anshus University of Tromsø/Oslo) Operating Systems Structure and Processes Lars Ailo Bongo Spring 2017 (using slides by Otto J. Anshus University of Tromsø/Oslo) The Architecture of an OS Monolithic Layered Virtual Machine, Library, Exokernel

More information

Lecture 3: O/S Organization. plan: O/S organization processes isolation

Lecture 3: O/S Organization. plan: O/S organization processes isolation 6.828 2012 Lecture 3: O/S Organization plan: O/S organization processes isolation topic: overall o/s design what should the main components be? what should the interfaces look like? why have an o/s at

More information

Kernel Types Simple OS Examples System Calls. Operating Systems. Autumn CS4023

Kernel Types Simple OS Examples System Calls. Operating Systems. Autumn CS4023 Operating Systems Autumn 2017-2018 Outline 1 2 3 Types of 2.4, SGG The OS Kernel The kernel is the central component of an OS It has complete control over everything that occurs in the system Kernel overview

More information

Operating System Kernels

Operating System Kernels Operating System Kernels Presenter: Saikat Guha Cornell University CS 614, Fall 2005 Operating Systems Initially, the OS was a run-time library Batch ( 55 65): Resident, spooled jobs Multiprogrammed (late

More information

CSE 4/521 Introduction to Operating Systems

CSE 4/521 Introduction to Operating Systems CSE 4/521 Introduction to Operating Systems Lecture 3 Operating Systems Structures (Operating-System Services, User and Operating-System Interface, System Calls, Types of System Calls, System Programs,

More information

About Me. Office Hours: Tu 4-5, W 1-2, or by appointment Office: 346A IST Bldg

About Me. Office Hours: Tu 4-5, W 1-2, or by appointment Office: 346A IST Bldg 1 About Me Trent Jaeger (PhD, University of Michigan) Associate Professor, CSE -- after 9 years at IBM Research Research: Operating System Security Example Projects L4 Microkernel -- minimal, high performance

More information

Introduction to Operating Systems Prof. Chester Rebeiro Department of Computer Science and Engineering Indian Institute of Technology, Madras

Introduction to Operating Systems Prof. Chester Rebeiro Department of Computer Science and Engineering Indian Institute of Technology, Madras Introduction to Operating Systems Prof. Chester Rebeiro Department of Computer Science and Engineering Indian Institute of Technology, Madras Week - 01 Lecture - 03 From Programs to Processes Hello. In

More information

Lecture 5: February 3

Lecture 5: February 3 CMPSCI 677 Operating Systems Spring 2014 Lecture 5: February 3 Lecturer: Prashant Shenoy Scribe: Aditya Sundarrajan 5.1 Virtualization Virtualization is a technique that extends or replaces an existing

More information

COS 318: Operating Systems

COS 318: Operating Systems COS 318: Operating Systems OS Structures and System Calls Prof. Margaret Martonosi Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall11/cos318/ Outline Protection

More information

Fakultät Informatik Institut für Systemarchitektur, Betriebssysteme THE NOVA KERNEL API. Julian Stecklina

Fakultät Informatik Institut für Systemarchitektur, Betriebssysteme THE NOVA KERNEL API. Julian Stecklina Fakultät Informatik Institut für Systemarchitektur, Betriebssysteme THE NOVA KERNEL API Julian Stecklina (jsteckli@os.inf.tu-dresden.de) Dresden, 5.2.2012 00 Disclaimer This is not about OpenStack Compute.

More information

Process Description and Control

Process Description and Control Process Description and Control 1 Process:the concept Process = a program in execution Example processes: OS kernel OS shell Program executing after compilation www-browser Process management by OS : Allocate

More information

Architectural Support for Operating Systems. Jinkyu Jeong ( Computer Systems Laboratory Sungkyunkwan University

Architectural Support for Operating Systems. Jinkyu Jeong ( Computer Systems Laboratory Sungkyunkwan University Architectural Support for Operating Systems Jinkyu Jeong ( jinkyu@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu Today s Topics Basic services of OS Basic computer system

More information

Lecture Topics. Announcements. Today: Threads (Stallings, chapter , 4.6) Next: Concurrency (Stallings, chapter , 5.

Lecture Topics. Announcements. Today: Threads (Stallings, chapter , 4.6) Next: Concurrency (Stallings, chapter , 5. Lecture Topics Today: Threads (Stallings, chapter 4.1-4.3, 4.6) Next: Concurrency (Stallings, chapter 5.1-5.4, 5.7) 1 Announcements Make tutorial Self-Study Exercise #4 Project #2 (due 9/20) Project #3

More information

Running on the Bare Metal with GeekOS

Running on the Bare Metal with GeekOS Running on the Bare Metal with GeekOS David Hovemeyer, Jeffrey K. Hollingsworth, and Bobby Bhattacharjee University of Maryland, College Park 1 Outline Motivation Overview Projects Classroom Experience

More information

CS533 Concepts of Operating Systems. Jonathan Walpole

CS533 Concepts of Operating Systems. Jonathan Walpole CS533 Concepts of Operating Systems Jonathan Walpole Improving IPC by Kernel Design & The Performance of Micro- Kernel Based Systems The IPC Dilemma IPC is very import in µ-kernel design - Increases modularity,

More information

Operating Systems ( )

Operating Systems ( ) Operating Systems (202-1-3031) Danny Hendler Office: Alon, 218 hendlerd@cs.bgu.ac.il Office hours: Wednesday, 11:00-13:00 Amnon Meisels Office: 206 build., 37 am@cs.bgu.ac.il Office hours: Sun. & Thur.,

More information

COMP9242 Advanced Operating Systems S2/2011 Week 9: Microkernel Design Gernot Heiser, NICTA

COMP9242 Advanced Operating Systems S2/2011 Week 9: Microkernel Design Gernot Heiser, NICTA COMP9242 Advanced Operating Systems S2/2011 Week 9: Microkernel Design Copyright Notice These slides are distributed under the Creative Commons Attribution 3.0 License You are free: to share to copy, distribute

More information

CSE543 - Computer and Network Security Module: Virtualization

CSE543 - Computer and Network Security Module: Virtualization CSE543 - Computer and Network Security Module: Virtualization Professor Trent Jaeger CSE543 - Introduction to Computer and Network Security 1 Operating System Quandary Q: What is the primary goal of system

More information

Topics. Operating System I. What is an Operating System? Let s Get Started! What is an Operating System? OS History.

Topics. Operating System I. What is an Operating System? Let s Get Started! What is an Operating System? OS History. Topics Operating System I What is an OS? OS History OS Concepts OS Structures Introduction Let s Get Started! What is an Operating System? What are some OSes you know? Pick an OS you know: What are some

More information

Department of Computer Science Institute for System Architecture, Operating Systems Group REAL-TIME MICHAEL ROITZSCH OVERVIEW

Department of Computer Science Institute for System Architecture, Operating Systems Group REAL-TIME MICHAEL ROITZSCH OVERVIEW Department of Computer Science Institute for System Architecture, Operating Systems Group REAL-TIME MICHAEL ROITZSCH OVERVIEW 2 SO FAR talked about in-kernel building blocks: threads memory IPC drivers

More information

ELEC 377 Operating Systems. Week 1 Class 2

ELEC 377 Operating Systems. Week 1 Class 2 Operating Systems Week 1 Class 2 Labs vs. Assignments The only work to turn in are the labs. In some of the handouts I refer to the labs as assignments. There are no assignments separate from the labs.

More information

6.828: OS/Language Co-design. Adam Belay

6.828: OS/Language Co-design. Adam Belay 6.828: OS/Language Co-design Adam Belay Singularity An experimental research OS at Microsoft in the early 2000s Many people and papers, high profile project Influenced by experiences at

More information

Distributed Systems Operation System Support

Distributed Systems Operation System Support Hajussüsteemid MTAT.08.009 Distributed Systems Operation System Support slides are adopted from: lecture: Operating System(OS) support (years 2016, 2017) book: Distributed Systems: Concepts and Design,

More information

Operating System Structure

Operating System Structure Operating System Structure Joey Echeverria joey42+os@gmail.com April 18, 2005 Carnegie Mellon University: 15-410 Spring 2005 Overview Motivations Kernel Structures Monolithic Kernels Open Systems Microkernels

More information

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edit9on

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edit9on Chapter 2: Operating-System Structures Operating System Concepts 9 th Edit9on Silberschatz, Galvin and Gagne 2013 Chapter 2: Operating-System Structures 1. Operating System Services 2. User Operating System

More information

Operating Systems ( )

Operating Systems ( ) Operating Systems (202-1-3031) Meni Adler Office: Alon, 211 adlerm@cs.bgu.ac.il Office hours: Wed.. Danny Hendler Office: Alon, 218 hendlerd@cs.bgu.ac.il Office hours: 11:30-13:30 Amnon Meisels Office:

More information

Operating System Structure

Operating System Structure Operating System Structure Joey Echeverria joey42+os@gmail.com December 6, 2004 Carnegie Mellon University: 15-410 Fall 2004 Overview Motivations Kernel Structures Monolithic Kernels Open Systems Microkernels

More information

COS 318: Operating Systems

COS 318: Operating Systems COS 318: Operating Systems OS Structures and System Calls Jaswinder Pal Singh Computer Science Department Princeton University (http://www.cs.princeton.edu/courses/cos318/) Outline Protection mechanisms

More information

Topics. Operating System. What is an Operating System? Let s Get Started! What is an Operating System? Where in the Book are we?

Topics. Operating System. What is an Operating System? Let s Get Started! What is an Operating System? Where in the Book are we? Topics Operating System What is an OS? OS History OS Concepts OS Structures Introduction Let s Get Started! What is an Operating System? What are some OSes you know? Guess if you are not sure Pick an OS

More information

OS Structure. Kevin Webb Swarthmore College January 25, Relevant xkcd:

OS Structure. Kevin Webb Swarthmore College January 25, Relevant xkcd: OS Structure Kevin Webb Swarthmore College January 25, 2018 Relevant xkcd: One of the survivors, poking around in the ruins with the point of a spear, uncovers a singed photo of Richard Stallman. They

More information

What are some common categories of system calls? What are common ways of structuring an OS? What are the principles behind OS design and

What are some common categories of system calls? What are common ways of structuring an OS? What are the principles behind OS design and What are the services provided by an OS? What are system calls? What are some common categories of system calls? What are the principles behind OS design and implementation? What are common ways of structuring

More information