summaryrefslogtreecommitdiff
path: root/win32/perlhost.h
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>2006-12-20 07:41:00 -0800
committerSteve Peters <steve@fisharerojo.org>2006-12-21 05:12:28 +0000
commit542cb85fb9a8a115820bc461945b228d531b4059 (patch)
tree1505bf2b598138b55e0a32cdc9ddfb1b040847d7 /win32/perlhost.h
parent1266ad8f485f435b89a025d0463af17ae6a66f3c (diff)
downloadperl-542cb85fb9a8a115820bc461945b228d531b4059.tar.gz
Implement killpg() for MSWin32
Message-ID: <m8hjo2pasv3hdbhd1sj9sasen7tm38hrhp@4ax.com> p4raw-id: //depot/perl@29605
Diffstat (limited to 'win32/perlhost.h')
-rw-r--r--win32/perlhost.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h
index d6e1e0fe33..3860507be6 100644
--- a/win32/perlhost.h
+++ b/win32/perlhost.h
@@ -1611,9 +1611,7 @@ PerlProcKill(struct IPerlProc* piPerl, int pid, int sig)
int
PerlProcKillpg(struct IPerlProc* piPerl, int pid, int sig)
{
- dTHX;
- Perl_croak(aTHX_ "killpg not implemented!\n");
- return 0;
+ return win32_kill(pid, -sig);
}
int