pythread.h 1.41 KB
Newer Older
1

2 3 4
#ifndef Py_PYTHREAD_H
#define Py_PYTHREAD_H

5
#define NO_EXIT_PROG		/* don't define PyThread_exit_prog() */
6 7
				/* (the result is no use of signals on SGI) */

8 9
typedef void *PyThread_type_lock;
typedef void *PyThread_type_sema;
10 11 12 13 14

#ifdef __cplusplus
extern "C" {
#endif

15
DL_IMPORT(void) PyThread_init_thread(void);
16
DL_IMPORT(long) PyThread_start_new_thread(void (*)(void *), void *);
17 18 19
DL_IMPORT(void) PyThread_exit_thread(void);
DL_IMPORT(void) PyThread__PyThread_exit_thread(void);
DL_IMPORT(long) PyThread_get_thread_ident(void);
20

21 22 23
DL_IMPORT(PyThread_type_lock) PyThread_allocate_lock(void);
DL_IMPORT(void) PyThread_free_lock(PyThread_type_lock);
DL_IMPORT(int) PyThread_acquire_lock(PyThread_type_lock, int);
24 25
#define WAIT_LOCK	1
#define NOWAIT_LOCK	0
26
DL_IMPORT(void) PyThread_release_lock(PyThread_type_lock);
27

28 29 30
DL_IMPORT(PyThread_type_sema) PyThread_allocate_sema(int);
DL_IMPORT(void) PyThread_free_sema(PyThread_type_sema);
DL_IMPORT(int) PyThread_down_sema(PyThread_type_sema, int);
31 32
#define WAIT_SEMA	1
#define NOWAIT_SEMA	0
33
DL_IMPORT(void) PyThread_up_sema(PyThread_type_sema);
34

35
#ifndef NO_EXIT_PROG
36 37
DL_IMPORT(void) PyThread_exit_prog(int);
DL_IMPORT(void) PyThread__PyThread_exit_prog(int);
38
#endif
39

40 41 42 43
DL_IMPORT(int) PyThread_create_key(void);
DL_IMPORT(void) PyThread_delete_key(int);
DL_IMPORT(int) PyThread_set_key_value(int, void *);
DL_IMPORT(void *) PyThread_get_key_value(int);
44

45 46 47 48
#ifdef __cplusplus
}
#endif

49
#endif /* !Py_PYTHREAD_H */