diff options
author | Brian Clarke <clarke@appliedmeta.com> | 2000-07-28 11:18:29 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-01 01:13:33 +0000 |
commit | 2f67576d8cb103df532c921ad5e6caa4f7927a88 (patch) | |
tree | 12ec624666d4fe3c51d73b2d5647208e129845bd /win32/win32.h | |
parent | d897a58d2e5e1e3d2a32d03885d609925ad305e4 (diff) | |
download | perl-2f67576d8cb103df532c921ad5e6caa4f7927a88.tar.gz |
fix and question re: waitpid() under win32
Message-ID: <3981DC85.290314EB@appliedmeta.com>
Slightly reformatted and WNOHANG # define moved to win32.h
so that also POSIX.xs sees it, as suggsted by Sarathy.
p4raw-id: //depot/perl@6472
Diffstat (limited to 'win32/win32.h')
-rw-r--r-- | win32/win32.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h index 2e5b0740dd..eb5ecd2971 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -492,5 +492,9 @@ struct interp_intern { */ #include "win32iop.h" +#ifndef WNOHANG +# define WNOHANG 1 +#endif + #endif /* _INC_WIN32_PERL5 */ |