2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-09 11:32:12 +00:00

recursive_try_mutex has both a scoped_lock and a scoped_try_lock

[SVN r34297]
This commit is contained in:
Anthony Williams
2006-06-13 21:08:02 +00:00
parent 29a1903c4b
commit 0d3f4a0b7c
2 changed files with 10 additions and 0 deletions

View File

@@ -135,8 +135,10 @@ boost::unit_test_framework::test_suite* init_unit_test_suite(int, char*[])
add_tests_for_scoped_lock_concept<boost::mutex>(test);
add_tests_for_scoped_lock_concept<boost::try_mutex>(test);
add_tests_for_scoped_lock_concept<boost::recursive_mutex>(test);
add_tests_for_scoped_lock_concept<boost::recursive_try_mutex>(test);
add_tests_for_scoped_try_lock_concept<boost::try_mutex>(test);
add_tests_for_scoped_try_lock_concept<boost::recursive_try_mutex>(test);
return test;
}