]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysdep.c
Built some more of the message expiry infrastructure
[citadel.git] / citadel / sysdep.c
index 93cfa8e2679da4012b2f0b1f0c2c55484d6da369..4ea3d9b2a5644556d6ceb6f0a5824f8a513a35f1 100644 (file)
@@ -115,7 +115,7 @@ void begin_critical_section(int which_one)
 {
        int oldval;
 
-       lprintf(8, "begin_critical_section(%d)\n", which_one);
+       /* lprintf(8, "begin_critical_section(%d)\n", which_one); */
 
        /* Don't get interrupted during the critical section */
        pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldval);
@@ -132,7 +132,7 @@ void end_critical_section(int which_one)
 {
        int oldval;
 
-       lprintf(8, "  end_critical_section(%d)\n", which_one);
+       /* lprintf(8, "  end_critical_section(%d)\n", which_one); */
 
        /* Let go of the semaphore */
        pthread_mutex_unlock(&Critters[which_one]);