diff options
author | Guido van Rossum <guido@python.org> | 1994-05-23 12:43:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-05-23 12:43:41 (GMT) |
commit | e944da8916e053a6a1deda8ce3fa61304d68f872 (patch) | |
tree | 335f8f6a765cce7698846de306af51157cbfeaac /Python/thread_cthread.h | |
parent | 34162a123a28f9092d6d9f361dd11bbfe23139a4 (diff) | |
download | cpython-e944da8916e053a6a1deda8ce3fa61304d68f872.zip cpython-e944da8916e053a6a1deda8ce3fa61304d68f872.tar.gz cpython-e944da8916e053a6a1deda8ce3fa61304d68f872.tar.bz2 |
ceval.c: dict of local mapping is now a tuple
compile.c: lists and dictionary in code objects become tuples
import.c: bump MAGIC
thread*.[ch]: added thread_ident() function
version.c: added '++' to version number and bumped date
Diffstat (limited to 'Python/thread_cthread.h')
-rw-r--r-- | Python/thread_cthread.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Python/thread_cthread.h b/Python/thread_cthread.h index c56bf0d..bf9a024 100644 --- a/Python/thread_cthread.h +++ b/Python/thread_cthread.h @@ -48,6 +48,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")); |