I have 2 processes which are running on the same Windows machine. Both of them are using semaphores that are provided from CreateSemaphore()
, and these 2 semaphores are created with the lpName
parameter set to NULL
(0).
Do these 2 processes share the same semaphore object? Or are anonymous semaphores unique in the OS?