[Python-checkins] python/dist/src/Include ceval.h,2.52,2.53

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Mon Oct 11 04:41:21 CEST 2004


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23529/Include

Modified Files:
	ceval.h 
Log Message:
SF patch 1044089:  New C API function PyEval_ThreadsInitialized(), by Nick
Coghlan, for determining whether PyEval_InitThreads() has been called.
Also purged the undocumented+unused _PyThread_Started int.


Index: ceval.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/ceval.h,v
retrieving revision 2.52
retrieving revision 2.53
diff -u -d -r2.52 -r2.53
--- ceval.h	27 Jun 2004 15:43:12 -0000	2.52
+++ ceval.h	11 Oct 2004 02:40:35 -0000	2.53
@@ -120,6 +120,7 @@
 
 #ifdef WITH_THREAD
 
+PyAPI_FUNC(int)  PyEval_ThreadsInitialized(void);
 PyAPI_FUNC(void) PyEval_InitThreads(void);
 PyAPI_FUNC(void) PyEval_AcquireLock(void);
 PyAPI_FUNC(void) PyEval_ReleaseLock(void);



More information about the Python-checkins mailing list