1992-08-04 14:41:02 +02:00
|
|
|
|
2000-07-09 02:55:06 +02:00
|
|
|
#ifndef Py_PYTHREAD_H
|
|
|
|
#define Py_PYTHREAD_H
|
|
|
|
|
1998-12-21 20:32:43 +01:00
|
|
|
#define NO_EXIT_PROG /* don't define PyThread_exit_prog() */
|
1994-08-01 13:34:53 +02:00
|
|
|
/* (the result is no use of signals on SGI) */
|
|
|
|
|
1998-12-21 20:32:43 +01:00
|
|
|
typedef void *PyThread_type_lock;
|
|
|
|
typedef void *PyThread_type_sema;
|
1992-09-11 17:19:27 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-08-12 09:21:58 +02:00
|
|
|
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(void) PyThread__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);
|
1992-08-04 14:41:02 +02:00
|
|
|
#define WAIT_LOCK 1
|
|
|
|
#define NOWAIT_LOCK 0
|
2002-08-12 09:21:58 +02:00
|
|
|
PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock);
|
1992-08-04 14:41:02 +02:00
|
|
|
|
1994-08-01 13:34:53 +02:00
|
|
|
#ifndef NO_EXIT_PROG
|
2002-08-12 09:21:58 +02:00
|
|
|
PyAPI_FUNC(void) PyThread_exit_prog(int);
|
|
|
|
PyAPI_FUNC(void) PyThread__PyThread_exit_prog(int);
|
1994-08-01 13:34:53 +02:00
|
|
|
#endif
|
1992-08-04 14:41:02 +02:00
|
|
|
|
2003-04-19 17:41:53 +02:00
|
|
|
/* Thread Local Storage (TLS) API */
|
2002-08-12 09:21:58 +02:00
|
|
|
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);
|
2003-04-19 17:41:53 +02:00
|
|
|
PyAPI_FUNC(void) PyThread_delete_key_value(int key);
|
1997-05-05 22:56:21 +02:00
|
|
|
|
1992-09-11 17:19:27 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-03-24 20:02:09 +01:00
|
|
|
#endif /* !Py_PYTHREAD_H */
|