[Python-checkins] CVS: python/dist/src/Include pystate.h,2.14.6.1,2.14.6.2
Tim Peters
tim_one@users.sourceforge.net
2001年7月20日 23:07:14 -0700
Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv27169/descr/dist/src/Include
Modified Files:
Tag: descr-branch
pystate.h
Log Message:
Merge of trunk delta date2001-07-17b to date2001-07-21. See PLAN.txt.
Index: pystate.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pystate.h,v
retrieving revision 2.14.6.1
retrieving revision 2.14.6.2
diff -C2 -r2.14.6.1 -r2.14.6.2
*** pystate.h 2001年07月07日 22:55:27 2.14.6.1
--- pystate.h 2001年07月21日 06:07:12 2.14.6.2
***************
*** 24,27 ****
--- 24,30 ----
int checkinterval;
+ #ifdef HAVE_DLOPEN
+ int dlopenflags;
+ #endif
} PyInterpreterState;
***************
*** 97,100 ****
--- 100,110 ----
#define PyThreadState_GET() (_PyThreadState_Current)
#endif
+
+ /* Routines for advanced debuggers, requested by David Beazley.
+ Don't use unless you know what you are doing! */
+ DL_IMPORT(PyInterpreterState *) PyInterpreterState_Head(void);
+ DL_IMPORT(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
+ DL_IMPORT(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
+ DL_IMPORT(PyThreadState *) PyThreadState_Next(PyThreadState *);
#ifdef __cplusplus