blob: e083383af80b477907c21c0a7eb9325cc60f3f24 [file] [log] [blame]
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001
Fred Drake3cf4d2b2000-07-09 00:55:06 +00002#ifndef Py_PYTHREAD_H
3#define Py_PYTHREAD_H
4
Guido van Rossum65d5b571998-12-21 19:32:43 +00005typedef void *PyThread_type_lock;
6typedef void *PyThread_type_sema;
Sjoerd Mullenderd10d8291992-09-11 15:19:27 +00007
8#ifdef __cplusplus
9extern "C" {
10#endif
11
Antoine Pitrou810023d2010-12-15 22:59:16 +000012/* Return status codes for Python lock acquisition. Chosen for maximum
13 * backwards compatibility, ie failure -> 0, success -> 1. */
14typedef enum PyLockStatus {
15 PY_LOCK_FAILURE = 0,
16 PY_LOCK_ACQUIRED = 1,
17 PY_LOCK_INTR
18} PyLockStatus;
19
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +020020#ifndef Py_LIMITED_API
21#define PYTHREAD_INVALID_THREAD_ID ((unsigned long)-1)
22#endif
23
Mark Hammond91a681d2002-08-12 07:21:58 +000024PyAPI_FUNC(void) PyThread_init_thread(void);
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +020025PyAPI_FUNC(unsigned long) PyThread_start_new_thread(void (*)(void *), void *);
Victor Stinnerc664b342019-05-04 11:48:05 -040026PyAPI_FUNC(void) _Py_NO_RETURN PyThread_exit_thread(void);
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +020027PyAPI_FUNC(unsigned long) PyThread_get_thread_ident(void);
Jake Tesler4959c332019-05-12 10:08:24 -070028PyAPI_FUNC(unsigned long) PyThread_get_thread_native_id(void);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000029
Mark Hammond91a681d2002-08-12 07:21:58 +000030PyAPI_FUNC(PyThread_type_lock) PyThread_allocate_lock(void);
31PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock);
32PyAPI_FUNC(int) PyThread_acquire_lock(PyThread_type_lock, int);
Masayuki Yamamoto731e1892017-10-06 19:41:34 +090033#define WAIT_LOCK 1
34#define NOWAIT_LOCK 0
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000035
36/* PY_TIMEOUT_T is the integral type used to specify timeouts when waiting
37 on a lock (see PyThread_acquire_lock_timed() below).
38 PY_TIMEOUT_MAX is the highest usable value (in microseconds) of that
39 type, and depends on the system threading API.
Victor Stinner754851f2011-04-19 23:58:51 +020040
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000041 NOTE: this isn't the same value as `_thread.TIMEOUT_MAX`. The _thread
42 module exposes a higher-level API, with timeouts expressed in seconds
43 and floating-point numbers allowed.
44*/
Benjamin Petersonaf580df2016-09-06 10:46:49 -070045#define PY_TIMEOUT_T long long
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000046
Victor Stinner850a18e2017-10-24 16:53:32 -070047#if defined(_POSIX_THREADS)
48 /* PyThread_acquire_lock_timed() uses _PyTime_FromNanoseconds(us * 1000),
49 convert microseconds to nanoseconds. */
50# define PY_TIMEOUT_MAX (PY_LLONG_MAX / 1000)
51#elif defined (NT_THREADS)
52 /* In the NT API, the timeout is a DWORD and is expressed in milliseconds */
53# if 0xFFFFFFFFLL * 1000 < PY_LLONG_MAX
54# define PY_TIMEOUT_MAX (0xFFFFFFFFLL * 1000)
55# else
56# define PY_TIMEOUT_MAX PY_LLONG_MAX
57# endif
58#else
59# define PY_TIMEOUT_MAX PY_LLONG_MAX
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000060#endif
Victor Stinner850a18e2017-10-24 16:53:32 -070061
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000062
63/* If microseconds == 0, the call is non-blocking: it returns immediately
64 even when the lock can't be acquired.
65 If microseconds > 0, the call waits up to the specified duration.
66 If microseconds < 0, the call waits until success (or abnormal failure)
Antoine Pitrou810023d2010-12-15 22:59:16 +000067
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000068 microseconds must be less than PY_TIMEOUT_MAX. Behaviour otherwise is
Antoine Pitrou810023d2010-12-15 22:59:16 +000069 undefined.
70
71 If intr_flag is true and the acquire is interrupted by a signal, then the
72 call will return PY_LOCK_INTR. The caller may reattempt to acquire the
73 lock.
74*/
75PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
76 PY_TIMEOUT_T microseconds,
77 int intr_flag);
78
Mark Hammond91a681d2002-08-12 07:21:58 +000079PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000080
Thomas Wouters0e3f5912006-08-11 14:57:12 +000081PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
82PyAPI_FUNC(int) PyThread_set_stacksize(size_t);
83
Serhiy Storchaka34d0ac82016-12-27 14:57:39 +020084#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
Victor Stinnerd5c355c2011-04-30 14:53:09 +020085PyAPI_FUNC(PyObject*) PyThread_GetInfo(void);
Serhiy Storchaka34d0ac82016-12-27 14:57:39 +020086#endif
Victor Stinner754851f2011-04-19 23:58:51 +020087
Masayuki Yamamoto731e1892017-10-06 19:41:34 +090088
89/* Thread Local Storage (TLS) API
90 TLS API is DEPRECATED. Use Thread Specific Storage (TSS) API.
91
92 The existing TLS API has used int to represent TLS keys across all
93 platforms, but it is not POSIX-compliant. Therefore, the new TSS API uses
94 opaque data type to represent TSS keys to be compatible (see PEP 539).
95*/
96PyAPI_FUNC(int) PyThread_create_key(void) Py_DEPRECATED(3.7);
97PyAPI_FUNC(void) PyThread_delete_key(int key) Py_DEPRECATED(3.7);
98PyAPI_FUNC(int) PyThread_set_key_value(int key, void *value) Py_DEPRECATED(3.7);
99PyAPI_FUNC(void *) PyThread_get_key_value(int key) Py_DEPRECATED(3.7);
100PyAPI_FUNC(void) PyThread_delete_key_value(int key) Py_DEPRECATED(3.7);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000101
Benjamin Petersone68df0f2008-06-13 00:26:50 +0000102/* Cleanup after a fork */
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900103PyAPI_FUNC(void) PyThread_ReInitTLS(void) Py_DEPRECATED(3.7);
104
105
106#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000
107/* New in 3.7 */
108/* Thread Specific Storage (TSS) API */
109
110typedef struct _Py_tss_t Py_tss_t; /* opaque */
111
112#ifndef Py_LIMITED_API
113#if defined(_POSIX_THREADS)
114 /* Darwin needs pthread.h to know type name the pthread_key_t. */
115# include <pthread.h>
116# define NATIVE_TSS_KEY_T pthread_key_t
117#elif defined(NT_THREADS)
118 /* In Windows, native TSS key type is DWORD,
119 but hardcode the unsigned long to avoid errors for include directive.
120 */
121# define NATIVE_TSS_KEY_T unsigned long
122#else
123# error "Require native threads. See https://bugs.python.org/issue31370"
124#endif
125
126/* When Py_LIMITED_API is not defined, the type layout of Py_tss_t is
127 exposed to allow static allocation in the API clients. Even in this case,
128 you must handle TSS keys through API functions due to compatibility.
129*/
130struct _Py_tss_t {
131 int _is_initialized;
132 NATIVE_TSS_KEY_T _key;
133};
134
135#undef NATIVE_TSS_KEY_T
136
137/* When static allocation, you must initialize with Py_tss_NEEDS_INIT. */
138#define Py_tss_NEEDS_INIT {0}
139#endif /* !Py_LIMITED_API */
140
141PyAPI_FUNC(Py_tss_t *) PyThread_tss_alloc(void);
142PyAPI_FUNC(void) PyThread_tss_free(Py_tss_t *key);
143
144/* The parameter key must not be NULL. */
145PyAPI_FUNC(int) PyThread_tss_is_created(Py_tss_t *key);
146PyAPI_FUNC(int) PyThread_tss_create(Py_tss_t *key);
147PyAPI_FUNC(void) PyThread_tss_delete(Py_tss_t *key);
148PyAPI_FUNC(int) PyThread_tss_set(Py_tss_t *key, void *value);
149PyAPI_FUNC(void *) PyThread_tss_get(Py_tss_t *key);
150#endif /* New in 3.7 */
Benjamin Petersone68df0f2008-06-13 00:26:50 +0000151
Sjoerd Mullenderd10d8291992-09-11 15:19:27 +0000152#ifdef __cplusplus
153}
154#endif
155
Guido van Rossumd023a781999-03-24 19:02:09 +0000156#endif /* !Py_PYTHREAD_H */