| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | #ifndef Py_PYSTATE_H
 | 
					
						
							|  |  |  | #define Py_PYSTATE_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***********************************************************
 | 
					
						
							|  |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							|  |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							|  |  |  | both that copyright notice and this permission notice appear in | 
					
						
							|  |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							|  |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Thread and interpreter state structures and their interfaces */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* State shared between threads */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 02:56:48 +00:00
										 |  |  | struct _ts; /* Forward */ | 
					
						
							|  |  |  | struct _is; /* Forward */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | typedef struct _is { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 02:56:48 +00:00
										 |  |  | 	struct _is *next; | 
					
						
							|  |  |  | 	struct _ts *tstate_head; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 02:56:48 +00:00
										 |  |  | 	PyObject *modules; | 
					
						
							|  |  |  | 	PyObject *sysdict; | 
					
						
							|  |  |  | 	PyObject *builtins; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 02:56:48 +00:00
										 |  |  | 	int checkinterval; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } PyInterpreterState; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* State unique per thread */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct _frame; /* Avoid including frameobject.h */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct _ts { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 02:56:48 +00:00
										 |  |  | 	struct _ts *next; | 
					
						
							|  |  |  | 	PyInterpreterState *interp; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct _frame *frame; | 
					
						
							|  |  |  | 	int recursion_depth; | 
					
						
							|  |  |  | 	int ticker; | 
					
						
							|  |  |  | 	int tracing; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject *sys_profilefunc; | 
					
						
							|  |  |  | 	PyObject *sys_tracefunc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject *curexc_type; | 
					
						
							|  |  |  | 	PyObject *curexc_value; | 
					
						
							|  |  |  | 	PyObject *curexc_traceback; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject *exc_type; | 
					
						
							|  |  |  | 	PyObject *exc_value; | 
					
						
							|  |  |  | 	PyObject *exc_traceback; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-13 20:24:05 +00:00
										 |  |  | 	PyObject *dict; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 02:56:48 +00:00
										 |  |  | 	/* XXX signal handlers should also be here */ | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } PyThreadState; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:48:25 +00:00
										 |  |  | DL_IMPORT(PyInterpreterState *) PyInterpreterState_New Py_PROTO((void)); | 
					
						
							|  |  |  | DL_IMPORT(void) PyInterpreterState_Clear Py_PROTO((PyInterpreterState *)); | 
					
						
							|  |  |  | DL_IMPORT(void) PyInterpreterState_Delete Py_PROTO((PyInterpreterState *)); | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:48:25 +00:00
										 |  |  | DL_IMPORT(PyThreadState *) PyThreadState_New Py_PROTO((PyInterpreterState *)); | 
					
						
							|  |  |  | DL_IMPORT(void) PyThreadState_Clear Py_PROTO((PyThreadState *)); | 
					
						
							|  |  |  | DL_IMPORT(void) PyThreadState_Delete Py_PROTO((PyThreadState *)); | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:48:25 +00:00
										 |  |  | DL_IMPORT(PyThreadState *) PyThreadState_Get Py_PROTO((void)); | 
					
						
							|  |  |  | DL_IMPORT(PyThreadState *) PyThreadState_Swap Py_PROTO((PyThreadState *)); | 
					
						
							|  |  |  | DL_IMPORT(PyObject *) PyThreadState_GetDict Py_PROTO((void)); | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:28:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Variable and macro for in-line access to current thread state */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 20:21:19 +00:00
										 |  |  | extern DL_IMPORT(PyThreadState *) _PyThreadState_Current; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:28:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef Py_DEBUG
 | 
					
						
							|  |  |  | #define PyThreadState_GET() PyThreadState_Get()
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define PyThreadState_GET() (_PyThreadState_Current)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_PYSTATE_H */
 |