2
0
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:
Roland Schwarz
2006-11-03 04:39:17 +00:00
parent 87acbb406d
commit 974754598e
6 changed files with 12 additions and 7 deletions

View File

@@ -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)