summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-10-08 15:41:08 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-10-08 15:41:08 +0000
commit85ced67f16d3f66a935ffa1c13f6a8f82f831d69 (patch)
tree0554bd38ced91b9d250890df74e71a131d63671a
parentf152979c2653a5d3da400a6170d2b978b5612e11 (diff)
downloadperl-85ced67f16d3f66a935ffa1c13f6a8f82f831d69.tar.gz
Add missing sig_pipe definition to Thread.xs.
p4raw-id: //depot/perlext/Thread@116
-rw-r--r--Thread.xs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Thread.xs b/Thread.xs
index dd94fd3415..6750505819 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)