From 9a65b6cbc00cdc1ce9601e4fc736fd4edf4d8f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Wed, 7 Nov 2007 08:20:06 +0000 Subject: [PATCH] Set SysThreadCreated to TRUE when possible (used in DisplayBootBitmap() function) svn path=/trunk/; revision=30237 --- reactos/ntoskrnl/ps/psmgr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/ntoskrnl/ps/psmgr.c b/reactos/ntoskrnl/ps/psmgr.c index fb693f47ee5..e2b138c6720 100644 --- a/reactos/ntoskrnl/ps/psmgr.c +++ b/reactos/ntoskrnl/ps/psmgr.c @@ -13,6 +13,7 @@ #include extern ULONG ExpInitializationPhase; +extern BOOLEAN SysThreadCreated; GENERIC_MAPPING PspProcessMapping = { @@ -581,6 +582,7 @@ PspInitPhase0(IN PLOADER_PARAMETER_BLOCK LoaderBlock) (PVOID*)&SysThread, NULL); ZwClose(SysThreadHandle); + SysThreadCreated = TRUE; /* Return success */ return TRUE;