diff options
Diffstat (limited to 'Python/thread_foobar.h')
-rw-r--r-- | Python/thread_foobar.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Python/thread_foobar.h b/Python/thread_foobar.h index 492096a..4b767b1 100644 --- a/Python/thread_foobar.h +++ b/Python/thread_foobar.h @@ -43,6 +43,12 @@ int start_new_thread _P2(func, void (*func) _P((void *)), arg, void *arg) return success < 0 ? 0 : 1; } +long get_thread_ident _P0() +{ + if (!initialized) + init_thread(); +} + static void do_exit_thread _P1(no_cleanup, int no_cleanup) { dprintf(("exit_thread called\n")); |