diff options
author | Guido van Rossum <guido@python.org> | 1998-10-01 20:42:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-01 20:42:43 (GMT) |
commit | 49b560698b0bba848c4f8325803a26a4477fb12d (patch) | |
tree | 5d7499463ec66fd0ecbe4608be20eda0d60e6395 /Python | |
parent | c456d36bdeb07253b87028bcdd657cf40696db31 (diff) | |
download | cpython-49b560698b0bba848c4f8325803a26a4477fb12d.zip cpython-49b560698b0bba848c4f8325803a26a4477fb12d.tar.gz cpython-49b560698b0bba848c4f8325803a26a4477fb12d.tar.bz2 |
Renamed thread.h to pythread.h.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 | ||||
-rw-r--r-- | Python/import.c | 2 | ||||
-rw-r--r-- | Python/pythonrun.c | 2 | ||||
-rw-r--r-- | Python/thread.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 0178f84..b004c79 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -109,7 +109,7 @@ static long dxp[256]; #ifdef WITH_THREAD #include <errno.h> -#include "thread.h" +#include "pythread.h" extern int _PyThread_Started; /* Flag for Py_Exit */ diff --git a/Python/import.c b/Python/import.c index c8bbc29..32dc319 100644 --- a/Python/import.c +++ b/Python/import.c @@ -119,7 +119,7 @@ _PyImport_Fini() #ifdef WITH_THREAD -#include "thread.h" +#include "pythread.h" static type_lock import_lock = 0; static long import_lock_thread = -1; diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 2be073b..7cff848 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1031,7 +1031,7 @@ Py_FatalError(msg) /* Clean up and exit */ #ifdef WITH_THREAD -#include "thread.h" +#include "pythread.h" int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */ #endif diff --git a/Python/thread.c b/Python/thread.c index 9da701d..ff5aefe 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -59,7 +59,7 @@ extern char *getenv(); #endif #endif -#include "thread.h" +#include "pythread.h" #ifdef __ksr__ #define _POSIX_THREADS |