]> code.citadel.org Git - citadel.git/blobdiff - webcit/context_loop.c
* Various debugging type of everythingism to help chat mode to work.
[citadel.git] / webcit / context_loop.c
index 9389591d693d2c0b2a4d7529c797c8cfeeaa2b4d..12a641e1aa8a8768c08ee14ea4fd1decbb4bed28 100644 (file)
@@ -412,14 +412,11 @@ void context_loop(int sock)
        /*
         * Bind to the session and perform the transaction
         */
-       lprintf(9, "LOCKING SESSION %d\n", TheSession->wc_session);
        pthread_mutex_lock(&TheSession->SessionMutex);          /* bind */
-       lprintf(9, "LOCKKED SESSION %d\n", TheSession->wc_session);
        pthread_setspecific(MyConKey, (void *)TheSession);
        TheSession->http_sock = sock;
        TheSession->lastreq = time(NULL);                       /* log */
        session_loop(req);                              /* do transaction */
-       lprintf(9, "UNLKING SESSION %d\n", TheSession->wc_session);
        pthread_mutex_unlock(&TheSession->SessionMutex);        /* unbind */
 
        /* Free the request buffer */