Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a
[python.git] / Include / pythread.h
blobb5a6ec38a6efda9608a739f11e432252a1d861bd
2 #ifndef Py_PYTHREAD_H
3 #define Py_PYTHREAD_H
5 #define NO_EXIT_PROG /* don't define PyThread_exit_prog() */
6 /* (the result is no use of signals on SGI) */
8 typedef void *PyThread_type_lock;
9 typedef void *PyThread_type_sema;
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
15 PyAPI_FUNC(void) PyThread_init_thread(void);
16 PyAPI_FUNC(long) PyThread_start_new_thread(void (*)(void *), void *);
17 PyAPI_FUNC(void) PyThread_exit_thread(void);
18 PyAPI_FUNC(void) PyThread__PyThread_exit_thread(void);
19 PyAPI_FUNC(long) PyThread_get_thread_ident(void);
21 PyAPI_FUNC(PyThread_type_lock) PyThread_allocate_lock(void);
22 PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock);
23 PyAPI_FUNC(int) PyThread_acquire_lock(PyThread_type_lock, int);
24 #define WAIT_LOCK 1
25 #define NOWAIT_LOCK 0
26 PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock);
28 PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
29 PyAPI_FUNC(int) PyThread_set_stacksize(size_t);
31 #ifndef NO_EXIT_PROG
32 PyAPI_FUNC(void) PyThread_exit_prog(int);
33 PyAPI_FUNC(void) PyThread__PyThread_exit_prog(int);
34 #endif
36 /* Thread Local Storage (TLS) API */
37 PyAPI_FUNC(int) PyThread_create_key(void);
38 PyAPI_FUNC(void) PyThread_delete_key(int);
39 PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
40 PyAPI_FUNC(void *) PyThread_get_key_value(int);
41 PyAPI_FUNC(void) PyThread_delete_key_value(int key);
43 /* Cleanup after a fork */
44 PyAPI_FUNC(void) PyThread_ReInitTLS(void);
46 #ifdef __cplusplus
48 #endif
50 #endif /* !Py_PYTHREAD_H */