InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Mutex And Binary Semaphore? |
|
Answer» SEMAPHORE is USED to SYNCHRONIZE processes, where as mutex is used to provide SYNCHRONIZATION between THREADS running in the same process. semaphore is used to synchronize processes, where as mutex is used to provide synchronization between threads running in the same process. |
|