An open API service indexing awesome lists of open source software.

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

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.