- On ARM, print out a message and freeze execution inside the native process main routine wrapper. This is essentially the first line of code that will execute in user-mode, and we need to know (celebrate) about it.

svn path=/trunk/; revision=34824
This commit is contained in:
ReactOS Portable Systems Group 2008-07-27 05:40:31 +00:00
parent 8fbd2ddb5b
commit ea820b22a1

View file

@ -76,7 +76,10 @@ NtProcessStartup(PPEB Peb)
ULONG Length;
ASSERT(Peb);
DPRINT("%s(%08lx) called\n", __FUNCTION__, Peb);
#ifdef _M_ARM // Huge achievement
DPRINT1("%s(%08lx) called\n", __FUNCTION__, Peb);
while (TRUE);
#endif
/* Normalize and get the Process Parameters */
ProcessParameters = RtlNormalizeProcessParams(Peb->ProcessParameters);