https://github.com/schneedotdev/os-concepts
operating system concepts in c
https://github.com/schneedotdev/os-concepts
c cli operating-systems os
Last synced: 12 months ago
JSON representation
operating system concepts in c
- Host: GitHub
- URL: https://github.com/schneedotdev/os-concepts
- Owner: schneedotdev
- Created: 2023-09-21T18:26:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-26T05:33:03.000Z (over 2 years ago)
- Last Synced: 2025-03-15T04:40:35.630Z (over 1 year ago)
- Topics: c, cli, operating-systems, os
- Language: C
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# os-concepts
## 01 - Memory Allocations and Deallocations
The objective of the project is to allocate and deallocate data structures on the heap and populate those structures.
## 02 - Working with fork(), exec(), and wait() System Calls
The objective of this assignment is to get comfortable with the fork(), exec(), and wait() system calls
## 03 - Inter-Process Communication (IPC) using Pipes and Shared Memory
The objective of this assignment is to get comfortable with Inter-Process Communication (IPC) using Shared Memory and Pipes. These approaches are among two of the most dominant mechanisms for doing IPC. Familiarity with shared memory also helps in advanced concepts of process synchronization.