mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
New thread.c from Sjoerd, supports _exit_prog(). Use this in goaway()
to avoid hanging in cleanup().
This commit is contained in:
parent
0297512a08
commit
f9f2e82fca
5 changed files with 253 additions and 92 deletions
|
@ -10,6 +10,7 @@
|
|||
void init_thread _P((void));
|
||||
int start_new_thread _P((void (*)(void *), void *));
|
||||
void exit_thread _P((void));
|
||||
void _exit_thread _P((void));
|
||||
|
||||
typedef void *type_lock;
|
||||
|
||||
|
@ -20,7 +21,15 @@ int acquire_lock _P((type_lock, int));
|
|||
#define NOWAIT_LOCK 0
|
||||
void release_lock _P((type_lock));
|
||||
|
||||
typedef void *type_sema;
|
||||
|
||||
type_sema allocate_sema _P((int));
|
||||
void free_sema _P((type_sema));
|
||||
void down_sema _P((type_sema));
|
||||
void up_sema _P((type_sema));
|
||||
|
||||
void exit_prog _P((int));
|
||||
void _exit_prog _P((int));
|
||||
|
||||
#undef _P
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue