Removed extra diagnostics
authorArt Cancro <ajc@citadel.org>
Mon, 28 Aug 2023 01:03:01 +0000 (21:03 -0400)
committerArt Cancro <ajc@citadel.org>
Mon, 28 Aug 2023 01:03:01 +0000 (21:03 -0400)
citadel/server/threads.c

index ed229c19e76443baaef2024bfa8f57032f1c4fd3..8c186649832d50fc0849d020ee8537268638bc1c 100644 (file)
@@ -57,22 +57,13 @@ void begin_critical_section(int which_one) {
                cdb_check_handles();
        }
 
-       struct timeval t1,t2;
-       syslog(LOG_DEBUG, "\033[33mthreads: lock %d requested\033[0m", which_one);
-       gettimeofday(&t1, NULL);
-       long ms1 = (t1.tv_sec * 1000) + t1.tv_usec;
        pthread_mutex_lock(&Critters[which_one]);
-       gettimeofday(&t2, NULL);
-       long ms2 = (t2.tv_sec * 1000) + t2.tv_usec;
-       syslog(LOG_DEBUG, "\033[32mthreads: lock %d acquired in %ld milliseconds\033[0m", which_one, ms2-ms1);
-
 }
 
 
 // Release a semaphore lock to end a critical section.
 void end_critical_section(int which_one) {
        pthread_mutex_unlock(&Critters[which_one]);
-       syslog(LOG_DEBUG, "\033[31mthreads: lock %d released\033[0m", which_one);
 }