Changeset 388 for python/vendor/current/Include/pythread.h
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Include/pythread.h
r2 r388 2 2 #ifndef Py_PYTHREAD_H 3 3 #define Py_PYTHREAD_H 4 5 #define NO_EXIT_PROG /* don't define PyThread_exit_prog() */6 /* (the result is no use of signals on SGI) */7 4 8 5 typedef void *PyThread_type_lock; … … 16 13 PyAPI_FUNC(long) PyThread_start_new_thread(void (*)(void *), void *); 17 14 PyAPI_FUNC(void) PyThread_exit_thread(void); 18 PyAPI_FUNC(void) PyThread__PyThread_exit_thread(void);19 15 PyAPI_FUNC(long) PyThread_get_thread_ident(void); 20 16 … … 28 24 PyAPI_FUNC(size_t) PyThread_get_stacksize(void); 29 25 PyAPI_FUNC(int) PyThread_set_stacksize(size_t); 30 31 #ifndef NO_EXIT_PROG32 PyAPI_FUNC(void) PyThread_exit_prog(int);33 PyAPI_FUNC(void) PyThread__PyThread_exit_prog(int);34 #endif35 26 36 27 /* Thread Local Storage (TLS) API */
Note:
See TracChangeset
for help on using the changeset viewer.