Changeset 391 for python/trunk/Include/pystate.h
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Include/pystate.h
r2 r391 96 96 long thread_id; /* Thread id where this tstate was created */ 97 97 98 int trash_delete_nesting; 99 PyObject *trash_delete_later; 100 98 101 /* XXX signal handlers should also be here */ 99 102 … … 106 109 107 110 PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *); 111 PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *); 112 PyAPI_FUNC(void) _PyThreadState_Init(PyThreadState *); 108 113 PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *); 109 114 PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *); … … 167 172 /* Helper/diagnostic function - get the current thread state for 168 173 this thread. May return NULL if no GILState API has been used 169 on the current thread. Note th e main thread always has such a174 on the current thread. Note that the main thread always has such a 170 175 thread-state, even if no auto-thread-state call has been made 171 176 on the main thread.
Note:
See TracChangeset
for help on using the changeset viewer.