diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-01 01:00:09 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-01 01:00:09 +0000 |
commit | 98cdd5a67a8259647997737bf2cec0ff79f7c012 (patch) | |
tree | 700a30f3a9c7640a0c123dc9608fc998df8ecfb4 /vos | |
parent | f62909b952e9ee2b286bebc76bd6582ac3548917 (diff) | |
download | perl-98cdd5a67a8259647997737bf2cec0ff79f7c012.tar.gz |
more complete pseudo-fork() support for Windows
p4raw-id: //depot/perl@4602
Diffstat (limited to 'vos')
-rw-r--r-- | vos/vosish.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vos/vosish.h b/vos/vosish.h index fc53dc1ec7..16487023a9 100644 --- a/vos/vosish.h +++ b/vos/vosish.h @@ -99,7 +99,7 @@ #ifndef SIGILL # define SIGILL 6 /* blech */ #endif -#define ABORT() kill(getpid(),SIGABRT); +#define ABORT() kill(PerlProc_getpid(),SIGABRT); /* * fwrite1() should be a routine with the same calling sequence as fwrite(), |