From: Malcolm Beattie Date: Wed, 8 Oct 1997 15:41:08 +0000 (+0000) Subject: Add missing sig_pipe definition to Thread.xs. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=85ced67f16d3f66a935ffa1c13f6a8f82f831d69;p=p5sagit%2Fp5-mst-13.2.git Add missing sig_pipe definition to Thread.xs. p4raw-id: //depot/perlext/Thread@116 --- diff --git a/Thread.xs b/Thread.xs index dd94fd3..6750505 100644 --- a/Thread.xs +++ b/Thread.xs @@ -3,6 +3,7 @@ #include "XSUB.h" static I32 threadnum = 0; +static int sig_pipe[2]; static void * threadstart(arg)