|
From: <sv...@va...> - 2008-03-08 15:03:30
|
Author: bart
Date: 2008-03-08 15:03:30 +0000 (Sat, 08 Mar 2008)
New Revision: 7600
Log:
Added pthread_mutex_destroy() call.
Modified:
trunk/exp-drd/tests/recursive_mutex.c
Modified: trunk/exp-drd/tests/recursive_mutex.c
===================================================================
--- trunk/exp-drd/tests/recursive_mutex.c 2008-03-08 14:04:33 UTC (rev 7599)
+++ trunk/exp-drd/tests/recursive_mutex.c 2008-03-08 15:03:30 UTC (rev 7600)
@@ -27,6 +27,7 @@
printf("Recursive mutex (statically initialized).\n");
lock_twice(&m);
+ pthread_mutex_destroy(&m);
}
{
pthread_mutex_t m;
|