[ros-diffs] [mjmartin] 39466: - Default ExitStatus for a process is STATUS_PENDING aka STILL_ACTIVE. Fixes bug #3135.

mjmartin at svn.reactos.org mjmartin at svn.reactos.org
Sat Feb 7 23:48:51 CET 2009


Author: mjmartin
Date: Sat Feb  7 16:48:51 2009
New Revision: 39466

URL: http://svn.reactos.org/svn/reactos?rev=39466&view=rev
Log:
- Default ExitStatus for a process is STATUS_PENDING aka STILL_ACTIVE. Fixes bug #3135.

Modified:
    trunk/reactos/ntoskrnl/ps/process.c

Modified: trunk/reactos/ntoskrnl/ps/process.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ps/process.c?rev=39466&r1=39465&r2=39466&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/ps/process.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ps/process.c [iso-8859-1] Sat Feb  7 16:48:51 2009
@@ -554,7 +554,7 @@
     Process->SectionObject = SectionObject;
 
     /* Set default exit code */
-    Process->ExitStatus = STATUS_TIMEOUT;
+    Process->ExitStatus = STATUS_PENDING;
 
     /* Check if this is the initial process being built */
     if (Parent)



More information about the Ros-diffs mailing list