#ifndef Py_PYTHREAD_H #define Py_PYTHREAD_H #define NO_EXIT_PROG /* don't define PyThread_exit_prog() */ /* (the result is no use of signals on SGI) */ typedef void *PyThread_type_lock; typedef void *PyThread_type_sema; #ifdef __cplusplus extern "C" { #endif 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); #define WAIT_LOCK 1 #define NOWAIT_LOCK 0 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); #ifndef NO_EXIT_PROG PyAPI_FUNC(void) PyThread_exit_prog(int); PyAPI_FUNC(void) PyThread__PyThread_exit_prog(int); #endif /* Thread Local Storage (TLS) API */ 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); #ifdef __cplusplus } #endif #endif /* !Py_PYTHREAD_H */ ithub.com/python/cpython.git
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-02-15 22:58:33 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-02-15 22:58:33 (GMT)
commit74162f311f79124453320c041c40f90be064bb25 (patch)
tree30aab772af0a5d3e37f807b198660a70caa8076f
parent9c96a923fb3be046489ff486d41194658c9b015a (diff)
downloadcpython-74162f311f79124453320c041c40f90be064bb25.zip
cpython-74162f311f79124453320c041c40f90be064bb25.tar.gz
cpython-74162f311f79124453320c041c40f90be064bb25.tar.bz2
Added support for loading pyc code from a resource.