DEVEL15-revert-ubik-changes-20080405
authorDerrick Brashear <shadow@dementia.org>
Sat, 5 Apr 2008 19:03:24 +0000 (19:03 +0000)
committerDerrick Brashear <shadow@dementia.org>
Sat, 5 Apr 2008 19:03:24 +0000 (19:03 +0000)
LICENSE IPL10

these changes are unneeded; remove them

(cherry picked from commit 5dd7e65c6fd233e70d98b271cbf48ac2356efe0f)

src/util/pthread_glock.c
src/util/pthread_glock.h

index 5506082..e6e6f78 100644 (file)
@@ -44,11 +44,6 @@ pthread_recursive_mutex_lock(pthread_recursive_mutex_t * mut)
 {
     int rc = 0;
 
-/*
- *    FSLog("Entered pthread_recursive_mutex_lock, thread id is %d\n",
- *             pthread_self());
- */
-
     (glock_init || pthread_once(&glock_init_once, glock_init_func));
 
     if (mut->locked) {
@@ -72,12 +67,6 @@ pthread_recursive_mutex_unlock(pthread_recursive_mutex_t * mut)
 {
     int rc = 0;
 
-/*
- *    FSLog("Entered pthread_recursive_mutex_unlock, thread id is %d\n",
- *             pthread_self());
- *
- */
-
     (glock_init || pthread_once(&glock_init_once, glock_init_func));
 
     if ((mut->locked) && (pthread_equal(mut->owner, pthread_self()))) {
index a419684..1c9beea 100644 (file)
@@ -42,8 +42,6 @@ extern int pthread_recursive_mutex_unlock(pthread_recursive_mutex_p);
 
 #else
 
-#include <syslog.h>
-
 #define LOCK_GLOBAL_MUTEX
 #define UNLOCK_GLOBAL_MUTEX