From: Tim Peters Date: Sun, 27 Aug 2000 20:00:35 +0000 (+0000) Subject: The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs. X-Git-Tag: v2.0b1~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ebe84dff587ad921000062fc1bbfd6146b5d36a;p=thirdparty%2FPython%2Fcpython.git The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs. --- diff --git a/Include/ceval.h b/Include/ceval.h index 083117324422..094ebb1be3e1 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -99,6 +99,7 @@ extern DL_IMPORT(void) PyEval_AcquireLock(void); extern DL_IMPORT(void) PyEval_ReleaseLock(void); extern DL_IMPORT(void) PyEval_AcquireThread(PyThreadState *tstate); extern DL_IMPORT(void) PyEval_ReleaseThread(PyThreadState *tstate); +extern DL_IMPORT(void) PyEval_ReInitThreads(void); #define Py_BEGIN_ALLOW_THREADS { \ PyThreadState *_save; \