From: Michael W. Hudson Date: Fri, 30 Sep 2005 08:17:40 +0000 (+0000) Subject: Fix bug: X-Git-Tag: v2.4.3c1~263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=963dbdd74a921da6ab61c482fea57b5de07a2a9b;p=thirdparty%2FPython%2Fcpython.git Fix bug: [ 1307978 ] Unsatisfied symbols: _PyGILState_NoteThreadState (code) (note that this only happens in a threads-disabled build). Will forward port momentarily. --- diff --git a/Python/pystate.c b/Python/pystate.c index 9d0ba31a86e3..52ff1511a05e 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -53,7 +53,9 @@ static PyInterpreterState *interp_head = NULL; PyThreadState *_PyThreadState_Current = NULL; PyThreadFrameGetter _PyThreadState_GetFrame = NULL; +#ifdef WITH_THREAD static void _PyGILState_NoteThreadState(PyThreadState* tstate); +#endif PyInterpreterState * @@ -188,7 +190,9 @@ PyThreadState_New(PyInterpreterState *interp) tstate->c_profileobj = NULL; tstate->c_traceobj = NULL; +#ifdef WITH_THREAD _PyGILState_NoteThreadState(tstate); +#endif HEAD_LOCK(); tstate->next = interp->tstate_head;