Actually, I've never heard of the entrypoint being called
NtProcessStartup for the kernel...
Why not fix the name in the x86 sources?
On 12-Feb-08, at 8:34 AM, fireball(a)svn.reactos.org wrote:
Author: fireball
Date: Tue Feb 12 16:34:33 2008
New Revision: 32321
URL:
http://svn.reactos.org/svn/reactos?rev=32321&view=rev
Log:
- Kernel's entrypoint is called NtProcessStartup right now, for
ReactOS. If this is to be changed, it should be changed for all
archs, not only for ARM.
Modified:
trunk/reactos/tools/rbuild/module.cpp
Modified: trunk/reactos/tools/rbuild/module.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/module.cpp?re…
=
=
=
=
=
=
=
=
======================================================================
--- trunk/reactos/tools/rbuild/module.cpp (original)
+++ trunk/reactos/tools/rbuild/module.cpp Tue Feb 12 16:34:33 2008
@@ -1033,7 +1033,7 @@
switch ( type )
{
case Kernel:
- return "KiSystemStartup";
+ return "NtProcessStartup";
case KernelModeDLL:
case KernelModeDriver:
return "DriverEntry@8";
Best regards,
Alex Ionescu