mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:52:57 +00:00
add some debug output
svn path=/trunk/; revision=11004
This commit is contained in:
parent
1c5a999278
commit
04c8adbef9
1 changed files with 5 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: main.c,v 1.195 2004/09/23 11:27:08 ekohl Exp $
|
/* $Id: main.c,v 1.196 2004/09/23 18:00:29 royce Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/ke/main.c
|
* FILE: ntoskrnl/ke/main.c
|
||||||
|
@ -682,7 +682,11 @@ ExpInitializeExecutive(VOID)
|
||||||
CPRINT("CommandLine: %s\n", (PUCHAR)KeLoaderBlock.CommandLine);
|
CPRINT("CommandLine: %s\n", (PUCHAR)KeLoaderBlock.CommandLine);
|
||||||
Status = IoCreateSystemRootLink((PUCHAR)KeLoaderBlock.CommandLine);
|
Status = IoCreateSystemRootLink((PUCHAR)KeLoaderBlock.CommandLine);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
|
{
|
||||||
|
DbgPrint ( "IoCreateSystemRootLink FAILED: (0x%x) - ", Status );
|
||||||
|
DbgPrintErrorMessage ( Status );
|
||||||
KEBUGCHECK(INACCESSIBLE_BOOT_DEVICE);
|
KEBUGCHECK(INACCESSIBLE_BOOT_DEVICE);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef KDBG
|
#ifdef KDBG
|
||||||
KdbInitProfiling2();
|
KdbInitProfiling2();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue