Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 1 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 2 | #ifndef Py_PYTHREAD_H |
| 3 | #define Py_PYTHREAD_H |
| 4 | |
Guido van Rossum | 65d5b57 | 1998-12-21 19:32:43 +0000 | [diff] [blame] | 5 | typedef void *PyThread_type_lock; |
| 6 | typedef void *PyThread_type_sema; |
Sjoerd Mullender | d10d829 | 1992-09-11 15:19:27 +0000 | [diff] [blame] | 7 | |
| 8 | #ifdef __cplusplus |
| 9 | extern "C" { |
| 10 | #endif |
| 11 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 12 | /* Return status codes for Python lock acquisition. Chosen for maximum |
| 13 | * backwards compatibility, ie failure -> 0, success -> 1. */ |
| 14 | typedef enum PyLockStatus { |
| 15 | PY_LOCK_FAILURE = 0, |
| 16 | PY_LOCK_ACQUIRED = 1, |
| 17 | PY_LOCK_INTR |
| 18 | } PyLockStatus; |
| 19 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 20 | PyAPI_FUNC(void) PyThread_init_thread(void); |
| 21 | PyAPI_FUNC(long) PyThread_start_new_thread(void (*)(void *), void *); |
| 22 | PyAPI_FUNC(void) PyThread_exit_thread(void); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 23 | PyAPI_FUNC(long) PyThread_get_thread_ident(void); |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 24 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 25 | PyAPI_FUNC(PyThread_type_lock) PyThread_allocate_lock(void); |
| 26 | PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock); |
| 27 | PyAPI_FUNC(int) PyThread_acquire_lock(PyThread_type_lock, int); |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 28 | #define WAIT_LOCK 1 |
| 29 | #define NOWAIT_LOCK 0 |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 30 | |
| 31 | /* PY_TIMEOUT_T is the integral type used to specify timeouts when waiting |
| 32 | on a lock (see PyThread_acquire_lock_timed() below). |
| 33 | PY_TIMEOUT_MAX is the highest usable value (in microseconds) of that |
| 34 | type, and depends on the system threading API. |
Victor Stinner | 754851f | 2011-04-19 23:58:51 +0200 | [diff] [blame] | 35 | |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 36 | NOTE: this isn't the same value as `_thread.TIMEOUT_MAX`. The _thread |
| 37 | module exposes a higher-level API, with timeouts expressed in seconds |
| 38 | and floating-point numbers allowed. |
| 39 | */ |
| 40 | #if defined(HAVE_LONG_LONG) |
| 41 | #define PY_TIMEOUT_T PY_LONG_LONG |
| 42 | #define PY_TIMEOUT_MAX PY_LLONG_MAX |
| 43 | #else |
| 44 | #define PY_TIMEOUT_T long |
| 45 | #define PY_TIMEOUT_MAX LONG_MAX |
| 46 | #endif |
| 47 | |
| 48 | /* In the NT API, the timeout is a DWORD and is expressed in milliseconds */ |
| 49 | #if defined (NT_THREADS) |
Hirokazu Yamamoto | f13c6d8 | 2010-09-11 22:35:24 +0000 | [diff] [blame] | 50 | #if (Py_LL(0xFFFFFFFF) * 1000 < PY_TIMEOUT_MAX) |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 51 | #undef PY_TIMEOUT_MAX |
Hirokazu Yamamoto | f13c6d8 | 2010-09-11 22:35:24 +0000 | [diff] [blame] | 52 | #define PY_TIMEOUT_MAX (Py_LL(0xFFFFFFFF) * 1000) |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 53 | #endif |
| 54 | #endif |
| 55 | |
| 56 | /* If microseconds == 0, the call is non-blocking: it returns immediately |
| 57 | even when the lock can't be acquired. |
| 58 | If microseconds > 0, the call waits up to the specified duration. |
| 59 | If microseconds < 0, the call waits until success (or abnormal failure) |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 60 | |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 61 | microseconds must be less than PY_TIMEOUT_MAX. Behaviour otherwise is |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 62 | undefined. |
| 63 | |
| 64 | If intr_flag is true and the acquire is interrupted by a signal, then the |
| 65 | call will return PY_LOCK_INTR. The caller may reattempt to acquire the |
| 66 | lock. |
| 67 | */ |
| 68 | PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock, |
| 69 | PY_TIMEOUT_T microseconds, |
| 70 | int intr_flag); |
| 71 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 72 | PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock); |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 73 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 74 | PyAPI_FUNC(size_t) PyThread_get_stacksize(void); |
| 75 | PyAPI_FUNC(int) PyThread_set_stacksize(size_t); |
| 76 | |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 77 | PyAPI_FUNC(PyObject*) PyThread_GetInfo(void); |
Victor Stinner | 754851f | 2011-04-19 23:58:51 +0200 | [diff] [blame] | 78 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 79 | /* Thread Local Storage (TLS) API */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 80 | PyAPI_FUNC(int) PyThread_create_key(void); |
| 81 | PyAPI_FUNC(void) PyThread_delete_key(int); |
| 82 | PyAPI_FUNC(int) PyThread_set_key_value(int, void *); |
| 83 | PyAPI_FUNC(void *) PyThread_get_key_value(int); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 84 | PyAPI_FUNC(void) PyThread_delete_key_value(int key); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 85 | |
Benjamin Peterson | e68df0f | 2008-06-13 00:26:50 +0000 | [diff] [blame] | 86 | /* Cleanup after a fork */ |
| 87 | PyAPI_FUNC(void) PyThread_ReInitTLS(void); |
| 88 | |
Sjoerd Mullender | d10d829 | 1992-09-11 15:19:27 +0000 | [diff] [blame] | 89 | #ifdef __cplusplus |
| 90 | } |
| 91 | #endif |
| 92 | |
Guido van Rossum | d023a78 | 1999-03-24 19:02:09 +0000 | [diff] [blame] | 93 | #endif /* !Py_PYTHREAD_H */ |