| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Thread and interpreter state structures and their interfaces */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | #ifndef Py_PYSTATE_H
 | 
					
						
							|  |  |  | #define Py_PYSTATE_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | /* 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 { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     struct _is *next; | 
					
						
							|  |  |  |     struct _ts *tstate_head; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     PyObject *modules; | 
					
						
							|  |  |  |     PyObject *sysdict; | 
					
						
							|  |  |  |     PyObject *builtins; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +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 { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     struct _ts *next; | 
					
						
							|  |  |  |     PyInterpreterState *interp; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     struct _frame *frame; | 
					
						
							|  |  |  |     int recursion_depth; | 
					
						
							|  |  |  |     int ticker; | 
					
						
							|  |  |  |     int tracing; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     PyObject *sys_profilefunc; | 
					
						
							|  |  |  |     PyObject *sys_tracefunc; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     PyObject *curexc_type; | 
					
						
							|  |  |  |     PyObject *curexc_value; | 
					
						
							|  |  |  |     PyObject *curexc_traceback; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     PyObject *exc_type; | 
					
						
							|  |  |  |     PyObject *exc_value; | 
					
						
							|  |  |  |     PyObject *exc_traceback; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     PyObject *dict; | 
					
						
							| 
									
										
										
										
											1998-04-13 20:24:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  |     /* XXX signal handlers should also be here */ | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } PyThreadState; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | DL_IMPORT(PyInterpreterState *) PyInterpreterState_New(void); | 
					
						
							|  |  |  | DL_IMPORT(void) PyInterpreterState_Clear(PyInterpreterState *); | 
					
						
							|  |  |  | DL_IMPORT(void) PyInterpreterState_Delete(PyInterpreterState *); | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | DL_IMPORT(PyThreadState *) PyThreadState_New(PyInterpreterState *); | 
					
						
							|  |  |  | DL_IMPORT(void) PyThreadState_Clear(PyThreadState *); | 
					
						
							|  |  |  | DL_IMPORT(void) PyThreadState_Delete(PyThreadState *); | 
					
						
							| 
									
										
										
										
											2001-01-23 01:46:06 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							|  |  |  | DL_IMPORT(void) PyThreadState_DeleteCurrent(void); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | DL_IMPORT(PyThreadState *) PyThreadState_Get(void); | 
					
						
							|  |  |  | DL_IMPORT(PyThreadState *) PyThreadState_Swap(PyThreadState *); | 
					
						
							|  |  |  | DL_IMPORT(PyObject *) PyThreadState_GetDict(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 */
 |