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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ebe84dff587ad921000062fc1bbfd6146b5d36a;p=python The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs. --- diff --git a/Include/ceval.h b/Include/ceval.h index 0831173244..094ebb1be3 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; \