X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fthreads.c;h=18641b5456491ce4201069b5cd55a64e6403b19c;hb=fd710adc44e642ad7b62cffbb7114c5b3f82bed4;hp=b0856bf2277e50afd8d298f0e9fd4a4e19dc0d44;hpb=27014176ee36ef29b80da016f3fd5772189f8377;p=citadel.git diff --git a/citadel/threads.c b/citadel/threads.c index b0856bf22..18641b545 100644 --- a/citadel/threads.c +++ b/citadel/threads.c @@ -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)); }