123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #ifndef Py_PYTHREAD_H
- #define Py_PYTHREAD_H
- typedef void *PyThread_type_lock;
- typedef void *PyThread_type_sema;
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef enum PyLockStatus {
- PY_LOCK_FAILURE = 0,
- PY_LOCK_ACQUIRED = 1,
- PY_LOCK_INTR
- } PyLockStatus;
- PyAPI_FUNC(void) PyThread_init_thread(void);
- PyAPI_FUNC(long) PyThread_start_new_thread(void (*)(void *), void *);
- PyAPI_FUNC(void) PyThread_exit_thread(void);
- PyAPI_FUNC(long) PyThread_get_thread_ident(void);
- PyAPI_FUNC(PyThread_type_lock) PyThread_allocate_lock(void);
- PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock);
- PyAPI_FUNC(int) PyThread_acquire_lock(PyThread_type_lock, int);
- #define WAIT_LOCK 1
- #define NOWAIT_LOCK 0
- #if defined(HAVE_LONG_LONG)
- #define PY_TIMEOUT_T PY_LONG_LONG
- #define PY_TIMEOUT_MAX PY_LLONG_MAX
- #else
- #define PY_TIMEOUT_T long
- #define PY_TIMEOUT_MAX LONG_MAX
- #endif
- #if defined (NT_THREADS)
- #if (Py_LL(0xFFFFFFFF) * 1000 < PY_TIMEOUT_MAX)
- #undef PY_TIMEOUT_MAX
- #define PY_TIMEOUT_MAX (Py_LL(0xFFFFFFFF) * 1000)
- #endif
- #endif
- PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
- PY_TIMEOUT_T microseconds,
- int intr_flag);
- PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock);
- PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
- PyAPI_FUNC(int) PyThread_set_stacksize(size_t);
- PyAPI_FUNC(PyObject*) PyThread_GetInfo(void);
- PyAPI_FUNC(int) PyThread_create_key(void);
- PyAPI_FUNC(void) PyThread_delete_key(int);
- PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
- PyAPI_FUNC(void *) PyThread_get_key_value(int);
- PyAPI_FUNC(void) PyThread_delete_key_value(int key);
- PyAPI_FUNC(void) PyThread_ReInitTLS(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|