
2 Jul
2010
2 Jul
'10
3:22 p.m.
AMDG Alapkumar Sinha wrote:
I am analyzing the different IPC mechanism of Boost.
Can someone help me with the following queries?
1. Is there something available in boost similar to windows "events". I mean where one thread can wait on one event and another thread signals the event. I was going through Boost.signals2, but it seems more of a function call back.
Use a condition variable. http://www.boost.org/doc/html/thread/synchronization.html#thread.synchroniza...
2. Is there support for FIFO, PIPE & POSIX signals
I don't think there's anything for signals. I believe that interprocess has a message queue. In Christ, Steven Watanabe