mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Add ReactOS version at the start of the debug log
svn path=/trunk/; revision=15474
This commit is contained in:
parent
58ba3012c1
commit
cc7ba13666
1 changed files with 6 additions and 0 deletions
|
@ -85,6 +85,12 @@ VOID
|
||||||
__attribute((noinline))
|
__attribute((noinline))
|
||||||
KiSystemStartup(BOOLEAN BootProcessor)
|
KiSystemStartup(BOOLEAN BootProcessor)
|
||||||
{
|
{
|
||||||
|
#if defined(DBG) || defined(KDBG)
|
||||||
|
DbgPrint("\n-------------------------------------------------------------------------------\n");
|
||||||
|
DbgPrint("Starting ReactOS "KERNEL_VERSION_STR" (Build "
|
||||||
|
KERNEL_VERSION_BUILD_STR")\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
DPRINT("KiSystemStartup(%d)\n", BootProcessor);
|
DPRINT("KiSystemStartup(%d)\n", BootProcessor);
|
||||||
|
|
||||||
/* Initialize the Application Processor */
|
/* Initialize the Application Processor */
|
||||||
|
|
Loading…
Reference in a new issue