summaryrefslogtreecommitdiffstats
path: root/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'sync.c')
-rw-r--r--sync.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sync.c b/sync.c
index 38e9e0df..0151db5d 100644
--- a/sync.c
+++ b/sync.c
@@ -62,7 +62,6 @@ SyncObjExit(pthread_mutex_t **mut)
void
lockObj(pthread_mutex_t *mut)
{
-dbgprintf("trying to lock %lx\n", (unsigned long) mut);
pthread_mutex_lock(mut);
}
@@ -71,7 +70,6 @@ dbgprintf("trying to lock %lx\n", (unsigned long) mut);
void
unlockObj(pthread_mutex_t *mut)
{
-dbgprintf("trying to UNlock %lx\n", (unsigned long) mut);
pthread_mutex_unlock(mut);
}