From: Bart Van Assche Date: Sat, 8 Mar 2008 15:03:30 +0000 (+0000) Subject: Added pthread_mutex_destroy() call. X-Git-Tag: svn/VALGRIND_3_4_0~940 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07de4d5131d5f0041242e24d1f13956ef144321b;p=thirdparty%2Fvalgrind.git Added pthread_mutex_destroy() call. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7600 --- diff --git a/exp-drd/tests/recursive_mutex.c b/exp-drd/tests/recursive_mutex.c index eab2eec51d..e5b5854faf 100644 --- a/exp-drd/tests/recursive_mutex.c +++ b/exp-drd/tests/recursive_mutex.c @@ -27,6 +27,7 @@ int main(int argc, char** argv) printf("Recursive mutex (statically initialized).\n"); lock_twice(&m); + pthread_mutex_destroy(&m); } { pthread_mutex_t m;