From 5e8a4f674a23b0692b24d3f6d30d698f9bde13de Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Sat, 7 Feb 2009 22:48:51 +0000 Subject: [PATCH] - Default ExitStatus for a process is STATUS_PENDING aka STILL_ACTIVE. Fixes bug #3135. svn path=/trunk/; revision=39466 --- reactos/ntoskrnl/ps/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ps/process.c b/reactos/ntoskrnl/ps/process.c index 117dae59786..d1764772947 100644 --- a/reactos/ntoskrnl/ps/process.c +++ b/reactos/ntoskrnl/ps/process.c @@ -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)