I\'m looking for a way to wait for multiple condition variables. ie. something like:
boost::condition_variable cond1; boost::condition_variable cond2; void wa
As Managu points out using multiple conditions might not be a good solution in the first place. What you want to do should be possible to be implemented using Semaphores.