-
Notifications
You must be signed in to change notification settings - Fork 85
Home
Travis CI User edited this page Jan 13, 2019
·
69 revisions
Welcome to System Programming coursebook!
This coursebook is being built by students and faculty from the University of Illinois. It is based on a crowd-source authoring wikibook experiment by Lawrence Angrave from CS @ Illinois, but is now its own .tex based project
This book is an introduction to programming in C, and system programming (processes, threads, synchronization, networking and more!). We assume you've already had some programming experience, in an earlier computer science course.
1. Introduction
2. Background
- History of C
- Features
- Crash course intro to C
- Preprocessor
- Language Facilities
- Common C Functions
- System Calls
- C Memory Model
- Pointers
- Shell
- Common Bugs
- Logic and Program flow mistakes
- Topics
- Questions/Exercises
4. Processes
- Processes
- Process Contents
- Intro to Fork
- Waiting and Execing
- exec
- The fork-exec-wait Pattern
- Further Reading
- Questions/Exercises
- Introduction
- C Memory Allocation Functions
- Intro to Allocating
- Memory Allocator Tutorial
- Case study: Buddy Allocator (an example of a segregated list)
- Further Reading
- Topics
- Questions/Exercises
6. Threads
- Processes vs threads
- Thread Internals
- Simple Usage
- Pthread Functions
- Race Conditions
- Topics
- Questions
- Mutex
- Condition Variables
- Thread Safe Data Structures
- Candidate Solutions
- Working Solutions
- Implementing Counting Semaphore
- Ring Buffer
- Extra: Process Synchronization
- Extra: Higher Order Models of Synchronization
- External Resources
- Topics
- Questions
8. Deadlock
- Resource Allocation Graphs
- Coffman conditions
- Approaches to solving deadlock
- Dining Philosophers
- Viable Solutions
- Topics
- Questions
9. Scheduling
11. Networking
- The OSI Model
- Layer 3: The Internet Protocol
- Layer 4: TCP and Client
- Layer 4: TCP Server
- Layer 4: UDP
- Layer 7: HTTP
- Nonblocking IO
- Remote Procedure Calls
- Topics
- Questions
12. Filesystems
- What is a filesystem?
- Storing data on disk
- Permissions and bits
- Virtual filesystems and other filesystems
- Memory Mapped IO
- Reliable Single Disk Filesystems
- Simple Filesystem Model
- Topics
- Questions
13. Signals
- The Deep Dive of Signals
- Sending Signals
- Handling Signals
- Signal Disposition
- Disposition in Child Processes (No Threads)
- Signals in a multithreaded program
- Topics
- Questions
14. Review
15. Appendix
16. Post Mortems
Please do not edit this wiki
This content is licensed under the coursebook licensing scheme. If you find any typos. Please file an issue or make a PR. Thank you!