Change 33763 by rgs@scipion on 2008/04/29 08:29:21
Subject: [PATCH] Win32 process ids can have more than 16 bits
From: "Jan Dubois" <jand@activestate.com>
Date: Tue, 29 Apr 2008 01:14:39 -0700
Message-ID: <01be01c8a9d1$12b32b10$38198130$@com>
Affected files ...
... //depot/perl/win32/win32.c#299 edit
Differences ...
==== //depot/perl/win32/win32.c#299 (text) ====
Index: perl/win32/win32.c
--- perl/win32/win32.c#298~33566~ 2008-03-25 09:23:46.000000000 -0700
+++ perl/win32/win32.c 2008-04-29 01:29:21.000000000 -0700
@@ -665,8 +665,7 @@
}
if (flag == P_NOWAIT) {
- if (IsWin95())
- PL_statusvalue = -1; /* >16bits hint for pp_system() */
+ PL_statusvalue = -1; /* >16bits hint for pp_system() */
}
else {
if (status < 0) {
@@ -779,8 +778,7 @@
Safefree(argv);
}
if (exectype == EXECF_SPAWN_NOWAIT) {
- if (IsWin95())
- PL_statusvalue = -1; /* >16bits hint for pp_system() */
+ PL_statusvalue = -1; /* >16bits hint for pp_system() */
}
else {
if (status < 0) {
End of Patch.