mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 17:54:08 +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:
parent
8fbd2ddb5b
commit
ea820b22a1
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue