From: Sascha Schumann Date: Mon, 27 Sep 1999 15:37:00 +0000 (+0000) Subject: Remove C++ style comments from C source file. X-Git-Tag: PRE_FETCH_READ_PATCH~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=154663e9a2ee5310172886384a7c2a8598f66bc8;p=php Remove C++ style comments from C source file. --- 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)