summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-09-27 15:37:00 +0000
committerSascha Schumann <sas@php.net>1999-09-27 15:37:00 +0000
commit154663e9a2ee5310172886384a7c2a8598f66bc8 (patch)
tree9114ff08cd94654fd47e15e86224929dba5f07fe
parent7665e9ef275d162aaae74c6d7e9fcaed3aa7c729 (diff)
downloadphp-git-154663e9a2ee5310172886384a7c2a8598f66bc8.tar.gz
Remove C++ style comments from C source file.
-rw-r--r--TSRM/TSRM.c8
1 files 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)