https://github.com/lkwinta/operating_systems
Repository for the Operating Systems course at AGH UST
https://github.com/lkwinta/operating_systems
c operating-system
Last synced: 4 months ago
JSON representation
Repository for the Operating Systems course at AGH UST
- Host: GitHub
- URL: https://github.com/lkwinta/operating_systems
- Owner: lkwinta
- Created: 2024-02-25T20:01:25.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-08T12:27:34.000Z (10 months ago)
- Last Synced: 2024-07-08T15:28:41.088Z (10 months ago)
- Topics: c, operating-system
- Language: C
- Homepage:
- Size: 116 KB
- Stars: 26
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Operating-Systems
Repository for the Operating Systems course at AGH UST.# Covered topics
You can check out task contents in Polish under following links:
1. [Lab 1 Makefile](lab01/README.md) - Introduction to makefiles
2. [Lab 2 Libraries ](lab02/README.md) - compiling nad linking static and shared libraries
3. [Lab 3 Files](lab03/README.md) - using system libraries to manage files
4. [Lab 4 Processes](lab04/README.md) - creating and managing UNIX processes
5. [Lab 5 Signals](lab05/README.md) - sending and handling UNIX signals
6. [Lab 6 Pipes](lab06/README.md) - communication between processes using pipes
7. [Lab 7 IPC](lab07/README.md) - simple chat using inter process communication queues
8. [Lab 8 IPC](lab08/README.md) - managing memory shared by multiple processes using semaphores
9. [Lab 9 Threads](lab09/README.md) - using threads library to optimize Conway's Game of Life
10. [Lab 10 Thread synchronization](lab10/README.md) - mechanisms for thread synchronization to solver Santa Clause problem
11. [Lab 11 TCP-IP Sockets](lab11/README.md) - create simple chat based on TCP/IP sockets
12. [LAB 12 UDP Sockets](lab12/README.md) - create simple chat based on UDP sockets