Subj : Re: How to wait on multiple condition variables or implement a similar semantics To : comp.programming.threads From : Pavel Lebedinsky Date : Tue Mar 15 2005 08:58 pm Joe Seigh wrote: > There are emulations of the windows WaitForMultipleObjects out > there, but they're pretty inefficient. > So is the windows implementation but that's hidden from you. Inefficient compared to what? If you have a bunch of objects that you want to wait for then I would expect it to be more efficient to use WaitForMultipleObjects rather then WaitForSingleObject in a loop. Sure, you can often redesign things so that you don't need multiple objects in the first place but that's a separate issue. .