mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-09 23:57:50 +01:00
Race condition in eventfd signaler fixed
recv function on eventfd signaler could accidentally grab two signals instead of one. Fixed. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
@@ -206,8 +206,16 @@ void zmq::signaler_t::recv ()
|
|||||||
uint64_t dummy;
|
uint64_t dummy;
|
||||||
ssize_t sz = read (r, &dummy, sizeof (dummy));
|
ssize_t sz = read (r, &dummy, sizeof (dummy));
|
||||||
errno_assert (sz == sizeof (dummy));
|
errno_assert (sz == sizeof (dummy));
|
||||||
if (dummy != 1)
|
|
||||||
printf ("dummy:%d\n", (int) dummy);
|
// If we accidentally grabbed the next signal along with the current
|
||||||
|
// one, return it back to the eventfd object.
|
||||||
|
if (unlikely (dummy == 2)) {
|
||||||
|
const uint64_t inc = 1;
|
||||||
|
ssize_t sz = write (w, &inc, sizeof (inc));
|
||||||
|
errno_assert (sz == sizeof (inc));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
zmq_assert (dummy == 1);
|
zmq_assert (dummy == 1);
|
||||||
#else
|
#else
|
||||||
unsigned char dummy;
|
unsigned char dummy;
|
||||||
|
|||||||
Reference in New Issue
Block a user