Removed the PushName and PopName debugging macros that I added. They
[citadel.git] / citadel / journaling.c
index 267d781a4e2b8b8e425280f3f0cd0c0d991b4be9..a0ebeb21d0c747bcf47f3c1f413225d6d01412eb 100644 (file)
@@ -262,7 +262,6 @@ void JournalRunQueueMsg(struct jnlq *jmsg) {
 void JournalRunQueue(void) {
        struct jnlq *jptr = NULL;
 
-       CtdlThreadPushName("JournalRunQueue");
        while (jnlq != NULL) {
                begin_critical_section(S_JOURNAL_QUEUE);
                if (jnlq != NULL) {
@@ -272,7 +271,6 @@ void JournalRunQueue(void) {
                end_critical_section(S_JOURNAL_QUEUE);
                JournalRunQueueMsg(jptr);
        }
-       CtdlThreadPopName();
 }