blob: 86cb1889bf8ecc1780fa84ae3733bb92c22dd405 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- framework/port/portmutx.c Wed Jun 8 02:51:05 2005
+++ framework/port/portmutx.c Thu Jan 12 11:45:43 2006
@@ -122,6 +122,7 @@
* WIN32 mutexes are recursive, so match that behavior.
*/
+#if 0
if ((status = pthread_mutexattr_settype(&attr,
#if defined (LINUX)
PTHREAD_MUTEX_RECURSIVE_NP)))
@@ -132,6 +133,7 @@
(void) pthread_mutexattr_destroy(&attr);
goto cleanup;
}
+#endif
if ((status = pthread_mutex_init(*mhandle, &attr)))
{
|