Re: Boost.Threads Bug (recursive_try_mutex)

18 Jan
2005
18 Jan
'05
5:41 p.m.
Mark Rodgers wrote:
Bill,
recursive_try_mutex::do_trylock() (BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE implementation) contains the following:
assert(res == 0);
Surely that should be
assert(res == 0 || res == EBUSY);
This bug still exists in 1.32! -- Jon Biggar Levanta jon@levanta.com

16 Mar
16 Mar
7:04 p.m.
New subject: Boost.Threads Bug (recursive_try_mutex)
Jonathan Biggar wrote:
Mark Rodgers wrote:
Bill,
recursive_try_mutex::do_trylock() (BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE implementation) contains the following:
assert(res == 0);
Surely that should be
assert(res == 0 || res == EBUSY);
This bug still exists in 1.32!
Now fixed. Mike
7476
Age (days ago)
7533
Last active (days ago)
1 comments
2 participants
participants (2)
-
Jonathan Biggar
-
Michael Glassford