Re: Thread Checking the Queue data in an infinite loop
- From: "Alexander Grigoriev" <alegr@xxxxxxxxxxxxx>
- Date: Fri, 11 Jan 2008 19:59:17 -0800
What's wrong with just fully draining a queue after an event was signalled?
I don't see any advantage of a semaphore. For a semaphore you'll have one
mandatory WFSO per a queued item, and for an event in high load condition
you'll have several items per WFSO, which reduces overhead somewhat.
You have to protect the queue in any case. You can use a lock-free
single-linked list, though, grab it completely and then process at your
leisure, without need of any synchronization.
You don't have to receive an event and grab a mutex in an atomic operation.
Yes, spurios wakeups are then possible, and it's trivial to handle.
"Doug Harrison [MVP]" <dsh@xxxxxxxx> wrote in message
news:d6qfo35ic9lfg6qvd67mmdmh122aorslql@xxxxxxxxxx
I disagree with Joe (above), and think that your proposal (using an event
to
signal a thread that's WaitForSingleObject on the event) is just fine.
Two problems with using an auto-reset event:
1. The reader would have to drain the queue each time it gets control. To
see why, imagine the writers adding N elements before the reader is ever
signaled and never adding any more.
2. The reader also has to prevent the writers from adding to the queue
while it is draining it, which means grabbing the mutex, but it can't
atomically receive the event notification and grab the mutex. This could
cause spurious future wake-ups for the reader, which would have to account
for this possibility by checking if the queue is empty.
--
Doug Harrison
Visual C++ MVP
.
- Follow-Ups:
- Re: Thread Checking the Queue data in an infinite loop
- From: Doug Harrison [MVP]
- Re: Thread Checking the Queue data in an infinite loop
- References:
- Thread Checking the Queue data in an infinite loop
- From: prams
- Re: Thread Checking the Queue data in an infinite loop
- From: Michael K. O'Neill
- Re: Thread Checking the Queue data in an infinite loop
- From: Doug Harrison [MVP]
- Thread Checking the Queue data in an infinite loop
- Prev by Date: Re: Informing UI thread of target for sending messages?
- Next by Date: Re: Common Controls and UNICODE support problem
- Previous by thread: Re: Thread Checking the Queue data in an infinite loop
- Next by thread: Re: Thread Checking the Queue data in an infinite loop
- Index(es):
Relevant Pages
|