Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remzi-arpacidusseau/ostep-code
Code from various chapters in OSTEP (http://www.ostep.org)
https://github.com/remzi-arpacidusseau/ostep-code
Last synced: 4 days ago
JSON representation
Code from various chapters in OSTEP (http://www.ostep.org)
- Host: GitHub
- URL: https://github.com/remzi-arpacidusseau/ostep-code
- Owner: remzi-arpacidusseau
- Created: 2018-02-26T15:58:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-09T20:49:36.000Z (about 1 year ago)
- Last Synced: 2024-11-03T10:32:07.426Z (10 days ago)
- Language: C
- Size: 51.8 KB
- Stars: 3,421
- Watchers: 66
- Forks: 1,323
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ostep-code
Code from various chapters in OSTEP (http://www.ostep.org)* [Introduction](intro)
## Virtualization
CPU Virtualization Chapters:
* Processes
* [Process API](cpu-api)
* Direct Execution
* CPU Scheduling
* Multi-level Feedback
* [Lottery Scheduling](cpu-sched-lottery)
* Multi-CPU SchedulingMemory Virtualization Chapters:
* [Address Spaces](vm-intro)
* Memory API
* Address Translation
* Segmentation
* Free Space Management
* Introduction to Paging
* Translation Lookaside Buffers
* Advanced Page Tables
* Swapping: Mechanisms
* Swapping: Policies
* Complete VM Systems## Concurrency
Concurrency Chapters:
* [Concurrency and Threads](threads-intro)
* [Threads API](threads-api)
* [Locks](threads-locks)
* Locked Data Structures
* [Condition Variables](threads-cv)
* [Semaphores](threads-sema)
* [Concurrency Bugs](threads-bugs)
* Event-based Concurrency## Persistence
Persistence Chapters:
* I/O Devices
* Hard Disk Drives
* Redundant Disk Arrays (RAID)
* Files and Directories
* File System Implementation
* Fast File System (FFS)
* FSCK and Journaling
* Log-structured File System (LFS)
* Flash-based SSDs
* Data Integrity and Protection
* [Distributed Systems](dist-intro)
* Network File System (NFS)
* Andrew File System (AFS)