Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 380 Bytes

File metadata and controls

9 lines (8 loc) · 380 Bytes

SharedMemoryFIFOqueue

FIFO queue in shared memory - two swapping buckets implementation. The use of semaphore for synchronization to solve the producent-consumer problem. Project was written as a part of learning how to properly use IPC Mechanisms.

What I learned

IPC mechanisms like:

  • System V Shared Memory
  • POSIX Shared Memory
  • System V Semaphores
  • POSIX Semaphores