From 154663e9a2ee5310172886384a7c2a8598f66bc8 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Mon, 27 Sep 1999 15:37:00 +0000 Subject: [PATCH] Remove C++ style comments from C source file. --- TSRM/TSRM.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index 8178d37035..c6a67266a3 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -350,7 +350,9 @@ TSRM_API void tsrm_mutex_free( MUTEX_T mutexp ) /* Lock a mutex */ TSRM_API int tsrm_mutex_lock( MUTEX_T mutexp ) { - //tsrm_debug("Mutex locked thread: %ld\n",tsrm_thread_id()); +#if 0 + tsrm_debug("Mutex locked thread: %ld\n",tsrm_thread_id()); +#endif #ifdef WIN32 return WaitForSingleObject(mutexp,1000); #elif defined(PTHREADS) @@ -366,7 +368,9 @@ TSRM_API int tsrm_mutex_lock( MUTEX_T mutexp ) /* Unlock a mutex */ TSRM_API int tsrm_mutex_unlock( MUTEX_T mutexp ) { - //tsrm_debug("Mutex unlocked thread: %ld\n",tsrm_thread_id()); +#if 0 + tsrm_debug("Mutex unlocked thread: %ld\n",tsrm_thread_id()); +#endif #ifdef WIN32 return ReleaseMutex(mutexp); #elif defined(PTHREADS) -- 2.50.1