mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
- 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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user