1999-03-24 15:02:09 -04:00
|
|
|
#ifndef Py_PYTHREAD_H
|
|
|
|
#define Py_PYTHREAD_H
|
|
|
|
|
|
|
|
/***********************************************************
|
2000-06-30 20:50:40 -03:00
|
|
|
Copyright (c) 2000, BeOpen.com.
|
|
|
|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|
|
|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See the file "Misc/COPYRIGHT" for information on usage and
|
|
|
|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
1999-03-24 15:02:09 -04:00
|
|
|
******************************************************************/
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
#define NO_EXIT_PROG /* don't define PyThread_exit_prog() */
|
1994-08-01 08:34:53 -03:00
|
|
|
/* (the result is no use of signals on SGI) */
|
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
#ifndef Py_PROTO
|
1992-09-11 12:19:27 -03:00
|
|
|
#if defined(__STDC__) || defined(__cplusplus)
|
1995-01-12 07:45:45 -04:00
|
|
|
#define Py_PROTO(args) args
|
1992-08-04 09:41:02 -03:00
|
|
|
#else
|
1995-01-12 07:45:45 -04:00
|
|
|
#define Py_PROTO(args) ()
|
1993-12-20 13:26:34 -04:00
|
|
|
#endif
|
1992-08-04 09:41:02 -03:00
|
|
|
#endif
|
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
typedef void *PyThread_type_lock;
|
|
|
|
typedef void *PyThread_type_sema;
|
1992-09-11 12:19:27 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(void) PyThread_init_thread Py_PROTO((void));
|
|
|
|
DL_IMPORT(int) PyThread_start_new_thread Py_PROTO((void (*)(void *), void *));
|
1998-12-04 14:48:25 -04:00
|
|
|
DL_IMPORT(void) PyThread_exit_thread Py_PROTO((void));
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(void) PyThread__PyThread_exit_thread Py_PROTO((void));
|
|
|
|
DL_IMPORT(long) PyThread_get_thread_ident Py_PROTO((void));
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(PyThread_type_lock) PyThread_allocate_lock Py_PROTO((void));
|
|
|
|
DL_IMPORT(void) PyThread_free_lock Py_PROTO((PyThread_type_lock));
|
|
|
|
DL_IMPORT(int) PyThread_acquire_lock Py_PROTO((PyThread_type_lock, int));
|
1992-08-04 09:41:02 -03:00
|
|
|
#define WAIT_LOCK 1
|
|
|
|
#define NOWAIT_LOCK 0
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(void) PyThread_release_lock Py_PROTO((PyThread_type_lock));
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(PyThread_type_sema) PyThread_allocate_sema Py_PROTO((int));
|
|
|
|
DL_IMPORT(void) PyThread_free_sema Py_PROTO((PyThread_type_sema));
|
|
|
|
DL_IMPORT(int) PyThread_down_sema Py_PROTO((PyThread_type_sema, int));
|
1996-10-08 11:21:49 -03:00
|
|
|
#define WAIT_SEMA 1
|
|
|
|
#define NOWAIT_SEMA 0
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(void) PyThread_up_sema Py_PROTO((PyThread_type_sema));
|
1992-08-17 05:59:08 -03:00
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
#ifndef NO_EXIT_PROG
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(void) PyThread_exit_prog Py_PROTO((int));
|
|
|
|
DL_IMPORT(void) PyThread__PyThread_exit_prog Py_PROTO((int));
|
1994-08-01 08:34:53 -03:00
|
|
|
#endif
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
DL_IMPORT(int) PyThread_create_key Py_PROTO((void));
|
|
|
|
DL_IMPORT(void) PyThread_delete_key Py_PROTO((int));
|
|
|
|
DL_IMPORT(int) PyThread_set_key_value Py_PROTO((int, void *));
|
|
|
|
DL_IMPORT(void *) PyThread_get_key_value Py_PROTO((int));
|
1997-05-05 17:56:21 -03:00
|
|
|
|
1992-09-11 12:19:27 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-03-24 15:02:09 -04:00
|
|
|
#endif /* !Py_PYTHREAD_H */
|