diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 13:05:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 13:05:15 (GMT) |
commit | 2067bfdf253e134a4144d3747300dbfcc7cc6203 (patch) | |
tree | 76613f07319d07cc4f0159769131a051504f8c69 /PC/os2emx | |
parent | 3b4b45bfe546b023383d4382af7767359390e264 (diff) | |
download | cpython-2067bfdf253e134a4144d3747300dbfcc7cc6203.zip cpython-2067bfdf253e134a4144d3747300dbfcc7cc6203.tar.gz cpython-2067bfdf253e134a4144d3747300dbfcc7cc6203.tar.bz2 |
Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.
Diffstat (limited to 'PC/os2emx')
-rw-r--r-- | PC/os2emx/Makefile | 2 | ||||
-rw-r--r-- | PC/os2emx/config.c | 4 | ||||
-rw-r--r-- | PC/os2emx/python26.def | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index 2fcb334..5f4cab8 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -281,7 +281,7 @@ SRC.MODULES= $(addprefix $(TOP), \ Modules/gcmodule.c \ Modules/signalmodule.c \ Modules/posixmodule.c \ - Modules/threadmodule.c \ + Modules/_threadmodule.c \ Modules/arraymodule.c \ Modules/binascii.c \ Modules/cmathmodule.c \ diff --git a/PC/os2emx/config.c b/PC/os2emx/config.c index 47378fd..93fbecc 100644 --- a/PC/os2emx/config.c +++ b/PC/os2emx/config.c @@ -39,7 +39,7 @@ PERFORMANCE OF THIS SOFTWARE. extern void initos2(); extern void initsignal(); #ifdef WITH_THREAD -extern void initthread(); +extern void init_thread(); #endif extern void init_codecs(); extern void init_csv(); @@ -99,7 +99,7 @@ struct _inittab _PyImport_Inittab[] = { {"os2", initos2}, {"signal", initsignal}, #ifdef WITH_THREAD - {"thread", initthread}, + {"_thread", init_thread}, #endif {"_codecs", init_codecs}, {"_csv", init_csv}, diff --git a/PC/os2emx/python26.def b/PC/os2emx/python26.def index 2795050..8bc91c8 100644 --- a/PC/os2emx/python26.def +++ b/PC/os2emx/python26.def @@ -1194,8 +1194,8 @@ EXPORTS ; From python26_s.lib(posixmodule) ; "initos2" -; From python26_s.lib(threadmodule) -; "initthread" +; From python26_s.lib(_threadmodule) +; "init_thread" ; From python26_s.lib(arraymodule) ; "initarray" |