I know that I can use condition variable to synchronize work between the threads, but is there any class like this (condition variable) to synchronize work between the processes, thanks in advance
I know that I can use condition variable to synchronize work between the threads,
Share
You could use named semaphore or named mutex. You could also share memory between processes by shared memory.