Author: ros-arm-bringup Date: Sun Jul 27 00:40:31 2008 New Revision: 34824
URL: http://svn.reactos.org/svn/reactos?rev=34824&view=rev Log: - 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.
Modified: trunk/reactos/lib/sdk/nt/entry_point.c
Modified: trunk/reactos/lib/sdk/nt/entry_point.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/nt/entry_point.c?re... ============================================================================== --- trunk/reactos/lib/sdk/nt/entry_point.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/nt/entry_point.c [iso-8859-1] Sun Jul 27 00:40:31 2008 @@ -76,7 +76,10 @@ 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);