ruby-changes:5993
From: usa <ko1@a...>
Date: Sat, 21 Jun 2008 17:34:56 +0900 (JST)
Subject: [ruby-changes:5993] Ruby:r17501 (trunk): * win32/win32.c (rb_w32_spawn): no longer support P_WAIT.
usa 2008-06-21 17:34:42 +0900 (Sat, 21 Jun 2008)
New Revision: 17501
Modified files:
trunk/ChangeLog
trunk/win32/win32.c
Log:
* win32/win32.c (rb_w32_spawn): no longer support P_WAIT.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/win32/win32.c?r1=17501&r2=17500&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17501&r2=17500&diff_format=u
Index: ChangeLog
===================================================================
--- ChangeLog (revision 17500)
+++ ChangeLog (revision 17501)
@@ -1,3 +1,7 @@
+Sat Jun 21 17:33:50 2008 NAKAMURA Usaku <usa@r...>
+
+ * win32/win32.c (rb_w32_spawn): no longer support P_WAIT.
+
Sat Jun 21 16:46:09 2008 NAKAMURA Usaku <usa@r...>
* thread_win32.c (native_sleep): must block reentrance when accessing
Index: win32/win32.c
===================================================================
--- win32/win32.c (revision 17500)
+++ win32/win32.c (revision 17501)
@@ -819,7 +819,6 @@
DWORD exitcode;
switch (mode) {
- case P_WAIT:
case P_NOWAIT:
case P_OVERLAY:
break;
@@ -834,9 +833,6 @@
}
switch (mode) {
- case P_WAIT:
- rb_syswait(child->pid);
- return NUM2INT(rb_last_status_get());
case P_NOWAIT:
return child->pid;
case P_OVERLAY:
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/