pythread.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #ifndef Py_PYTHREAD_H
  2. #define Py_PYTHREAD_H
  3. typedef void *PyThread_type_lock;
  4. typedef void *PyThread_type_sema;
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. /* Return status codes for Python lock acquisition. Chosen for maximum
  9. * backwards compatibility, ie failure -> 0, success -> 1. */
  10. typedef enum PyLockStatus {
  11. PY_LOCK_FAILURE = 0,
  12. PY_LOCK_ACQUIRED = 1,
  13. PY_LOCK_INTR
  14. } PyLockStatus;
  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(long) PyThread_get_thread_ident(void);
  19. PyAPI_FUNC(PyThread_type_lock) PyThread_allocate_lock(void);
  20. PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock);
  21. PyAPI_FUNC(int) PyThread_acquire_lock(PyThread_type_lock, int);
  22. #define WAIT_LOCK 1
  23. #define NOWAIT_LOCK 0
  24. /* PY_TIMEOUT_T is the integral type used to specify timeouts when waiting
  25. on a lock (see PyThread_acquire_lock_timed() below).
  26. PY_TIMEOUT_MAX is the highest usable value (in microseconds) of that
  27. type, and depends on the system threading API.
  28. NOTE: this isn't the same value as `_thread.TIMEOUT_MAX`. The _thread
  29. module exposes a higher-level API, with timeouts expressed in seconds
  30. and floating-point numbers allowed.
  31. */
  32. #if defined(HAVE_LONG_LONG)
  33. #define PY_TIMEOUT_T PY_LONG_LONG
  34. #define PY_TIMEOUT_MAX PY_LLONG_MAX
  35. #else
  36. #define PY_TIMEOUT_T long
  37. #define PY_TIMEOUT_MAX LONG_MAX
  38. #endif
  39. /* In the NT API, the timeout is a DWORD and is expressed in milliseconds */
  40. #if defined (NT_THREADS)
  41. #if (Py_LL(0xFFFFFFFF) * 1000 < PY_TIMEOUT_MAX)
  42. #undef PY_TIMEOUT_MAX
  43. #define PY_TIMEOUT_MAX (Py_LL(0xFFFFFFFF) * 1000)
  44. #endif
  45. #endif
  46. /* If microseconds == 0, the call is non-blocking: it returns immediately
  47. even when the lock can't be acquired.
  48. If microseconds > 0, the call waits up to the specified duration.
  49. If microseconds < 0, the call waits until success (or abnormal failure)
  50. microseconds must be less than PY_TIMEOUT_MAX. Behaviour otherwise is
  51. undefined.
  52. If intr_flag is true and the acquire is interrupted by a signal, then the
  53. call will return PY_LOCK_INTR. The caller may reattempt to acquire the
  54. lock.
  55. */
  56. PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
  57. PY_TIMEOUT_T microseconds,
  58. int intr_flag);
  59. PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock);
  60. PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
  61. PyAPI_FUNC(int) PyThread_set_stacksize(size_t);
  62. PyAPI_FUNC(PyObject*) PyThread_GetInfo(void);
  63. /* Thread Local Storage (TLS) API */
  64. PyAPI_FUNC(int) PyThread_create_key(void);
  65. PyAPI_FUNC(void) PyThread_delete_key(int);
  66. PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
  67. PyAPI_FUNC(void *) PyThread_get_key_value(int);
  68. PyAPI_FUNC(void) PyThread_delete_key_value(int key);
  69. /* Cleanup after a fork */
  70. PyAPI_FUNC(void) PyThread_ReInitTLS(void);
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74. #endif /* !Py_PYTHREAD_H */