Synchronization
  • Introduction
  • Race Condition
    • Too Much Milk Problem
  • Mutual Exclusion
    • Shared Output
  • Semaphore in C
  • Too Much Milk: Use semaphore
  • Shared Output: Use semaphore
  • Traffic Control Problem
  • Traffic Control: Solution
  • Shared Memory
Powered by GitBook
On this page

Was this helpful?

Introduction

In this lab, you will see some synchronization problems between processes and learn how to solve them.

Prepared by TANG Lu, Calvin Kam

NextRace Condition

Last updated 1 month ago

Was this helpful?