mirror of
https://github.com/boostorg/thread.git
synced 2026-02-09 11:32:12 +00:00
Removed recursive_mutex from library builds and regression testing for RC_1_34_0 branch.
[SVN r35818]
This commit is contained in:
@@ -291,7 +291,8 @@ recursive_mutex::recursive_mutex()
|
||||
|
||||
res = pthread_mutex_init(&m_mutex, &attr);
|
||||
{
|
||||
int res = pthread_mutexattr_destroy(&attr);
|
||||
int res = 0;
|
||||
res = pthread_mutexattr_destroy(&attr);
|
||||
assert(res == 0);
|
||||
}
|
||||
if (res != 0)
|
||||
@@ -447,7 +448,8 @@ recursive_try_mutex::recursive_try_mutex()
|
||||
|
||||
res = pthread_mutex_init(&m_mutex, &attr);
|
||||
{
|
||||
int res = pthread_mutexattr_destroy(&attr);
|
||||
int res = 0;
|
||||
res = pthread_mutexattr_destroy(&attr);
|
||||
assert(res == 0);
|
||||
}
|
||||
if (res != 0)
|
||||
|
||||
Reference in New Issue
Block a user