summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorLupe Christoph <lupe@lupe-christoph.de>2000-08-09 13:35:54 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-11 01:36:16 +0000
commit7bd161a15a083a0aed82ba8e1fa3d6df6f975c68 (patch)
tree1227461bbcdeca6a69f6105c67a3416a787f157a /thread.h
parentdaf4d4ea57f31fbfc23438d8d6f6bb9c48b870bd (diff)
downloadperl-7bd161a15a083a0aed82ba8e1fa3d6df6f975c68.tar.gz
Getting perlio and threads to compile
Message-ID: <20000809113554.G23160@alanya.lupe-christoph.de> (the Solaris version changes in Configure skipped) p4raw-id: //depot/perl@6594
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.h b/thread.h
index f7ab18c553..206a5c508e 100644
--- a/thread.h
+++ b/thread.h
@@ -251,7 +251,7 @@
# define ALLOC_THREAD_KEY \
STMT_START { \
if (pthread_key_create(&PL_thr_key, 0)) { \
- fprintf(stderr, "panic: pthread_key_create"); \
+ PerlIO_printf(PerlIO_stderr(), "panic: pthread_key_create"); \
exit(1); \
} \
} STMT_END