Please enable JavaScript.
Coggle requires JavaScript to display documents.
Concurrent Programming - Coggle Diagram
Concurrent Programming
Primitives
"These primitives are essential for handling synchronization, communication, and coordination between concurrent threads, processes, or coroutines."
-
Semaphore
Counter that controls access to a shared resource. Allow a limited number of threads or process to access a the resource simultaneously
-
-
Barriers
Force a set of threads or process to wait until all of them have reached a certain point in their condition before continuing together
-
-
-