Re: [perl #34493] h2ph `extern inline' problems
[p5sagit/p5-mst-13.2.git] / thread.h
index 93062c5..5de28fb 100644 (file)
--- a/thread.h
+++ b/thread.h
     STMT_START {                                               \
        int _eC_;                                               \
        if ((_eC_ = pthread_key_create(&PL_thr_key, 0))) {      \
-           PerlIO_printf(PerlIO_stderr(), "panic: pthread_key_create (%d) [%s:%d]",    \
-                                _eC_, __FILE__, __LINE__);     \
+            write(2, "panic: pthread_key_create failed\n", 33); \
            exit(1);                                            \
        }                                                       \
     } STMT_END