diff options
author | Guido van Rossum <guido@python.org> | 1997-05-05 20:56:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-05 20:56:21 (GMT) |
commit | a027efa5bfa7911b5c4b522b6a0698749a6f2e4a (patch) | |
tree | 7027609cb66223aba0355957599aa7629fce7e53 /Include/pythread.h | |
parent | 73237c54b40c345813fa6b7831a32b10fa4671b5 (diff) | |
download | cpython-a027efa5bfa7911b5c4b522b6a0698749a6f2e4a.zip cpython-a027efa5bfa7911b5c4b522b6a0698749a6f2e4a.tar.gz cpython-a027efa5bfa7911b5c4b522b6a0698749a6f2e4a.tar.bz2 |
Massive changes for separate thread state management.
All per-thread globals are moved into a struct which is manipulated
separately.
Diffstat (limited to 'Include/pythread.h')
-rw-r--r-- | Include/pythread.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Include/pythread.h b/Include/pythread.h index f42e52f..09415c9 100644 --- a/Include/pythread.h +++ b/Include/pythread.h @@ -35,6 +35,10 @@ extern "C" { #define up_sema PyThread_up_sema #define exit_prog PyThread_exit_prog #define _exit_prog PyThread__exit_prog +#define create_key PyThread_create_key +#define delete_key PyThread_delete_key +#define get_key_value PyThread_get_key_value +#define set_key_value PyThread_set_key_value void init_thread Py_PROTO((void)); @@ -62,6 +66,11 @@ void exit_prog Py_PROTO((int)); void _exit_prog Py_PROTO((int)); #endif +int create_key Py_PROTO((void)); +void delete_key Py_PROTO((int)); +int set_key_value Py_PROTO((int, void *)); +void * get_key_value Py_PROTO((int)); + #ifdef __cplusplus } #endif |