holy crap there is some old cruft in here I have to rewrite!
[citadel.git] / citadel / threads.c
index b0856bf2277e50afd8d298f0e9fd4a4e19dc0d44..18641b5456491ce4201069b5cd55a64e6403b19c 100644 (file)
@@ -53,7 +53,6 @@ int try_critical_section(int which_one)
         * transaction; this could lead to deadlock.
         */
        if (    (which_one != S_FLOORCACHE)
-               && (which_one != S_RPLIST)
        ) {
                cdb_check_handles();
        }
@@ -71,7 +70,6 @@ void begin_critical_section(int which_one)
         * transaction; this could lead to deadlock.
         */
        if (    (which_one != S_FLOORCACHE)
-               && (which_one != S_RPLIST)
        ) {
                cdb_check_handles();
        }
@@ -137,7 +135,6 @@ void CtdlThreadCreate(void *(*start_routine)(void*))
 
 
 void InitializeMasterTSD(void) {
-       TRACE;
        memset(&masterTSD, 0, sizeof(struct thread_tsd));
 }