Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want a thread to wait until any of two Conditions are signaled. Is it possible?

Suppose the thread is handling incoming packets of data, while it's possible a user interrupts by changing some states.

One Condition is signaled when a packet has come, and the other is signaled when states have been changed.

I think it's inappropriate to use one Condition for both events, because that would cause a lot of unnecessary wakeups in other threads which are monitoring the states.

share|improve this question

2 Answers

up vote 3 down vote accepted

You can add a third condition that is signaled by both incoming packets and user state changes? I don't think it is possible to wait on multiple conditions.

share|improve this answer
So every signaling thread signals twice (packetCond.signalAll(); packetOrStatesCond.signalAll();)? Far from elegant, but it worked anyway. Thank you. – niboshi May 4 '11 at 7:31

Use a semaphore, with 2 permits, have your waiting item acquire those 2, and have your events release those permits, 1 at a time until 2 are back?

share|improve this answer
That gives you both of two conditions. The OP wants either of two conditions. – Stephen C May 4 '11 at 6:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.