[ros-diffs] [ros-arm-bringup] 34824: - 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.

ros-arm-bringup at svn.reactos.org ros-arm-bringup at svn.reactos.org
Sun Jul 27 07:40:32 CEST 2008


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?rev=34824&r1=34823&r2=34824&view=diff
==============================================================================
--- 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);



More information about the Ros-diffs mailing list