From 05be07aab434337364d83ade5791e96e3fd4de44 Mon Sep 17 00:00:00 2001 From: "roberto@cable" Date: Wed, 23 Feb 2011 10:29:01 +0100 Subject: [PATCH] removed debug from real gil --- plugins/python/gil.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/python/gil.c b/plugins/python/gil.c index fd7141e2..dfcd0d7f 100644 --- a/plugins/python/gil.c +++ b/plugins/python/gil.c @@ -4,13 +4,11 @@ extern struct uwsgi_server uwsgi; extern struct uwsgi_python up; void gil_real_get() { - uwsgi_log("*** REAL GIL ***\n"); PyEval_AcquireLock(); PyThreadState_Swap((PyThreadState *) pthread_getspecific(up.upt_gil_key)); } void gil_real_release() { - uwsgi_log("*** REAL RELEASE ***\n"); pthread_setspecific(up.upt_gil_key, (void *) PyThreadState_Swap(NULL)); PyEval_ReleaseLock(); }