- Default ExitStatus for a process is STATUS_PENDING aka STILL_ACTIVE. Fixes bug #3135.

svn path=/trunk/; revision=39466
This commit is contained in:
Michael Martin 2009-02-07 22:48:51 +00:00
parent dc0a2cec45
commit 5e8a4f674a

View file

@ -554,7 +554,7 @@ PspCreateProcess(OUT PHANDLE ProcessHandle,
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)