1997-05-05 17:56:21 -03:00
|
|
|
#ifndef Py_PYSTATE_H
|
|
|
|
#define Py_PYSTATE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***********************************************************
|
2000-06-30 20:50:40 -03:00
|
|
|
Copyright (c) 2000, BeOpen.com.
|
|
|
|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|
|
|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See the file "Misc/COPYRIGHT" for information on usage and
|
|
|
|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
1997-05-05 17:56:21 -03:00
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* Thread and interpreter state structures and their interfaces */
|
|
|
|
|
|
|
|
|
|
|
|
/* State shared between threads */
|
|
|
|
|
1997-08-01 23:56:48 -03:00
|
|
|
struct _ts; /* Forward */
|
|
|
|
struct _is; /* Forward */
|
|
|
|
|
1997-05-05 17:56:21 -03:00
|
|
|
typedef struct _is {
|
|
|
|
|
1997-08-01 23:56:48 -03:00
|
|
|
struct _is *next;
|
|
|
|
struct _ts *tstate_head;
|
1997-05-05 17:56:21 -03:00
|
|
|
|
1997-08-01 23:56:48 -03:00
|
|
|
PyObject *modules;
|
|
|
|
PyObject *sysdict;
|
|
|
|
PyObject *builtins;
|
1997-05-05 17:56:21 -03:00
|
|
|
|
1997-08-01 23:56:48 -03:00
|
|
|
int checkinterval;
|
1997-05-05 17:56:21 -03:00
|
|
|
|
|
|
|
} PyInterpreterState;
|
|
|
|
|
|
|
|
|
|
|
|
/* State unique per thread */
|
|
|
|
|
|
|
|
struct _frame; /* Avoid including frameobject.h */
|
|
|
|
|
|
|
|
typedef struct _ts {
|
|
|
|
|
1997-08-01 23:56:48 -03:00
|
|
|
struct _ts *next;
|
|
|
|
PyInterpreterState *interp;
|
1997-05-05 17:56:21 -03: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 17:24:05 -03:00
|
|
|
PyObject *dict;
|
|
|
|
|
1997-08-01 23:56:48 -03:00
|
|
|
/* XXX signal handlers should also be here */
|
1997-05-05 17:56:21 -03:00
|
|
|
|
|
|
|
} PyThreadState;
|
|
|
|
|
|
|
|
|
1998-12-04 14:48:25 -04: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 17:56:21 -03:00
|
|
|
|
1998-12-04 14:48:25 -04: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 17:56:21 -03:00
|
|
|
|
1998-12-04 14:48:25 -04: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 17:56:21 -03:00
|
|
|
|
1998-12-21 14:28:10 -04:00
|
|
|
|
|
|
|
/* Variable and macro for in-line access to current thread state */
|
|
|
|
|
1998-12-21 16:21:19 -04:00
|
|
|
extern DL_IMPORT(PyThreadState *) _PyThreadState_Current;
|
1998-12-21 14:28:10 -04:00
|
|
|
|
|
|
|
#ifdef Py_DEBUG
|
|
|
|
#define PyThreadState_GET() PyThreadState_Get()
|
|
|
|
#else
|
|
|
|
#define PyThreadState_GET() (_PyThreadState_Current)
|
|
|
|
#endif
|
|
|
|
|
1997-05-05 17:56:21 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_PYSTATE_H */
|