summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-05-17 02:24:56 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-05-17 02:24:56 +0000
commit71d280e38f6b1166e3ba01f7a839868275eb4b7f (patch)
treeeab990f9f6904b20b8a0dc2b4bae6db80077cd51 /win32
parent52853b95ebed443e023862f2a1db2614404699e5 (diff)
downloadperl-71d280e38f6b1166e3ba01f7a839868275eb4b7f.tar.gz
reenable fake signal handling on Windows, bugs and all
p4raw-id: //depot/perl@6108
Diffstat (limited to 'win32')
-rw-r--r--win32/perlhost.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h
index 51e125b848..ea0d31d9dd 100644
--- a/win32/perlhost.h
+++ b/win32/perlhost.h
@@ -10,6 +10,7 @@
#ifndef ___PerlHost_H___
#define ___PerlHost_H___
+#include <signal.h>
#include "iperlsys.h"
#include "vmem.h"
#include "vdir.h"
@@ -1639,7 +1640,7 @@ PerlProcWaitpid(struct IPerlProc* piPerl, int pid, int *status, int flags)
Sighandler_t
PerlProcSignal(struct IPerlProc* piPerl, int sig, Sighandler_t subcode)
{
- return 0;
+ return signal(sig, subcode);
}
#ifdef USE_ITHREADS