From 679f2a24e3d7a564efc285a860b2b3f0a580efde Mon Sep 17 00:00:00 2001 From: csoler Date: Tue, 23 Nov 2010 08:01:22 +0000 Subject: [PATCH] re-enabled mutex initialization, because RS could not start. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3860 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- src/util/bdthreads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/bdthreads.h b/src/util/bdthreads.h index dacbd82..d44ff94 100644 --- a/src/util/bdthreads.h +++ b/src/util/bdthreads.h @@ -50,9 +50,9 @@ class bdMutex std::cerr << "ERROR: Could not initialize mutex !" << std::endl ; } else +#endif if( pthread_mutex_init(&realMutex, NULL)) std::cerr << "ERROR: Could not initialize mutex !" << std::endl ; -#endif } ~bdMutex() { pthread_mutex_destroy(&realMutex); }