How to wait and notify like in Java In C/C++ for shared memory between two or more thread?I use pthread library.
|
Instead of the Java object that you would use to wait/notify, you need two objects: a mutex and a condition variable. These are initialized with Where you would have synchronized on the Java object, use Where you would have called Where you would have called Where you would have called As in Java, spurious wakeups are possible from the wait functions, so you need some condition which is set before the call to signal, and checked after the call to wait, and you need to call Unlike Java, where you can't call There's not really much more to it, the basic pattern is the same as Java, and not by coincidence. Do read the documentation for all those functions, though, because there are various flags and funny behaviours that you want to know about and/or avoid. In C++ you can do a bit better than just using the pthreads API. You should at least apply RAII to the mutex lock/unlock, but depending what C++ libraries you can use, you might be better off using a more C++-ish wrapper for the pthreads functions. |
||||
|
|
|
pthread_cond_wait and pthread_cond_signal can be used to synchronize based on a condition |
|||
|
|
|
Using Condition Variables is one way to do it: those are available when using the
|
|||
|
|
|
If available, you might use POSIX semaphores. The pthread library has mutexes, which might work for you as well. Google it ... |
|||
|
|