summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-21 19:32:43 +0000
committerGuido van Rossum <guido@python.org>1998-12-21 19:32:43 +0000
commit89be49caf4403c7db4e412200f5e0b017d436bca (patch)
tree4b258f6815654cbf5f43ce4e80b0a497490d82fa /Python/thread.c
parentf3fc78843018a0a5f259e7b0eeb705f9ac635596 (diff)
downloadcpython-89be49caf4403c7db4e412200f5e0b017d436bca.tar.gz
Thanks to Chris Herborth, the thread primitives now have proper Py*
names in the source code (they already had those for the linker, through some smart macros; but the source still had the old, un-Py names).
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c
index 2c206908b4..c533398a3c 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -109,9 +109,9 @@ static int thread_debug = 0;
static int initialized;
-static void _init_thread(); /* Forward */
+static void PyThread__init_thread(); /* Forward */
-void init_thread _P0()
+void PyThread_init_thread _P0()
{
#ifdef Py_DEBUG
char *p = getenv("THREADDEBUG");
@@ -126,8 +126,8 @@ void init_thread _P0()
if (initialized)
return;
initialized = 1;
- dprintf(("init_thread called\n"));
- _init_thread();
+ dprintf(("PyThread_init_thread called\n"));
+ PyThread__init_thread();
}
#ifdef SGI_THREADS