Operating System Design
eBook - ePub

Operating System Design

The Xinu Approach

  1. 576 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Operating System Design

The Xinu Approach

About this book

Lauded for avoiding the typical vague, high-level survey approach found in many texts, earlier editions of this bestselling book removed the mystery by explaining the internal structure of an operating system in clear, readable prose. The third edition of Operating System Design: The Xinu Approach expands and extends the text to include new chapters on a pipe mechanism, multicore operating systems, and considerations of operating systems being used in unexpected ways.

The text covers all major operating system components, including the key topics of scheduling and context switching, physical and virtual memory management, file systems, device drivers, device-independent I/O, Internet communication, and user interfaces. More important, the book follows a logical architecture that places each component in a multi-level hierarchy. It simplifies learning about operating systems by allowing a reader to understand one level at a time without needing forward references. It starts with a bare machine and builds the system level by level. In the end, a reader will appreciate how all the components of an operating system work together to form a unified, integrated platform that allows arbitrary application programs to run concurrently.

The text uses a small, elegant system named Xinu as an example to illustrate the concepts and principles and make the discussion concrete. Because an operating system must deal with the underlying hardware, the text shows examples for the two basic computer architectural approaches used in the computer industry: CISC and RISC. Readers will see that most of the code remains identical across the two architectures, and they can easily compare the differences among the machine-dependent pieces, such as hardware initialization code, device interface code, and context switch code.

Xinu code is freely available, and readers are strongly encouraged to download the system and experiment by making modifications or extensions. The Xinu web page, https://xinu.cs.purdue.edu, contains links to the code from the book as well as instructions on how to run Xinu on experimenter hardware boards. The page also provides links to a version that runs on the (free) VirtualBox hypervisor. A reader can install VirtualBox on their laptop or desktop, and then run Xinu without the need for additional hardware.

Companion resources found here: https://www.cs.purdue.edu/homes/comer/downloads/private/Xinu_Book_Slides

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Operating System Design by Douglas Comer in PDF and/or ePUB format, as well as other popular books in Computer Science & Computer Science General. We have over one million books available in our catalogue for you to explore.

Table of contents

  1. Cover Page
  2. Half-Title Page
  3. Title Page
  4. Copyright Page
  5. Dedication Page
  6. Contents
  7. Preface
  8. About the Author
  9. Chapter 1 Introduction And Overview
  10. Chapter 2 Concurrent Execution And Operating System Services
  11. Chapter 3 An Overview Of The Hardware And Runtime Environment
  12. Chapter 4 List And Queue Manipulation
  13. Chapter 5 Scheduling And Context Switching
  14. Chapter 6 More Process Management
  15. Chapter 7 Coordination Of Concurrent Processes
  16. Chapter 8 Message Passing
  17. Chapter 9 Basic Memory Management
  18. Chapter 10 High-level Memory Management and Virtual Memory
  19. Chapter 11 High-level Message Passing
  20. Chapter 12 Interrupt Processing
  21. Chapter 13 Real-time Clock Management
  22. Chapter 14 Device–independent Input And Output
  23. Chapter 15 An Example Device Driver
  24. Chapter 16 DMA Devices And Drivers (Ethernet)
  25. Chapter 17 A Minimal Internet Protocol Stack
  26. Chapter 18 A Remote Disk Driver
  27. Chapter 19 File Systems
  28. Chapter 20 A Remote File System
  29. Chapter 21 A Syntactic Namespace
  30. Chapter 22 System Initialization
  31. Chapter 23 Subsystem Initialization And Memory Marking
  32. Chapter 24 Exception Handling
  33. Chapter 25 System Configuration
  34. Chapter 26 A Pipe Mechanism
  35. Chapter 27 An Example User Interface: The Xinu Shell
  36. Chapter 28 Multicore Systems
  37. Chapter 29 Operating Systems Everywhere
  38. Index