Skip to content

Latest commit

 

History

History
20 lines (20 loc) · 398 Bytes

introduction.md

File metadata and controls

20 lines (20 loc) · 398 Bytes
graph TB
   subgraph dependence
       interrupt
       thread
   end
   subgraph sync
       SpinLock --> interrupt
       Condvar --> SpinLock
    Condvar --> thread
    Mutex --> Condvar
       Monitor --> Condvar
       Semaphore --> Condvar
       Semaphore --> SpinLock
   end
   subgraph test
       Dining_Philosophers --> Mutex
       Dining_Philosophers --> Monitor
   end
Loading