- Fix inclusion of deleted file.
authorAlex Ionescu <aionescu@gmail.com>
Tue, 22 Nov 2005 05:48:48 +0000 (05:48 +0000)
committerAlex Ionescu <aionescu@gmail.com>
Tue, 22 Nov 2005 05:48:48 +0000 (05:48 +0000)
svn path=/trunk/; revision=19451

reactos/lib/kernel32/thread/i386/fiber.S
reactos/lib/ntdll/main/i386/dispatch.S
reactos/lib/rtl/i386/except_asm.s
reactos/ntoskrnl/kdbg/i386/kdb_help.S
reactos/ntoskrnl/ke/i386/ctxswitch.S
reactos/ntoskrnl/ke/i386/main_asm.S
reactos/ntoskrnl/ke/i386/syscall.S
reactos/ntoskrnl/ke/i386/trap.s
reactos/tools/nci/ncitool.c

index 214a264..d5f93ed 100644 (file)
@@ -7,7 +7,6 @@
  *              KJK::Hyperion <noog@libero.it>
  */
 
  *              KJK::Hyperion <noog@libero.it>
  */
 
-#include <ndk/i386/segment.h>
 #include <ndk/asm.h>
 
 #define CONTEXT_FULL                    0x10007
 #include <ndk/asm.h>
 
 #define CONTEXT_FULL                    0x10007
index 289a435..ee46d0d 100644 (file)
@@ -9,7 +9,6 @@
 /* INCLUDES ******************************************************************/\r
 \r
 #include <ndk/asm.h>\r
 /* INCLUDES ******************************************************************/\r
 \r
 #include <ndk/asm.h>\r
-#include <ndk/i386/segment.h>\r
 .intel_syntax noprefix\r
 \r
 #define EXCEPTION_NONCONTINUABLE    1\r
 .intel_syntax noprefix\r
 \r
 #define EXCEPTION_NONCONTINUABLE    1\r
index eaa3e68..9da7d74 100644 (file)
@@ -10,7 +10,6 @@
 /* INCLUDES ******************************************************************/
 
 #include <ndk/asm.h>
 /* INCLUDES ******************************************************************/
 
 #include <ndk/asm.h>
-#include <ndk/i386/segment.h>
 .intel_syntax noprefix
 
 #define EXCEPTION_UNWINDING         2
 .intel_syntax noprefix
 
 #define EXCEPTION_UNWINDING         2
index 162904f..e0ae796 100644 (file)
@@ -1,5 +1,4 @@
 #include <ndk/asm.h>
 #include <ndk/asm.h>
-#include <ndk/i386/segment.h>
 
 .text
 
 
 .text
 
index e3d6f01..cc52db3 100644 (file)
@@ -13,7 +13,6 @@
 #include <roscfg.h>
 #include <internal/i386/ke.h>
 #include <ndk/asm.h>
 #include <roscfg.h>
 #include <internal/i386/ke.h>
 #include <ndk/asm.h>
-#include <ndk/i386/segment.h>
 .intel_syntax noprefix
 
 #define Running 2 
 .intel_syntax noprefix
 
 #define Running 2 
index 5513da6..98f15f0 100644 (file)
@@ -1,6 +1,5 @@
 #include <roscfg.h>
 #include <ndk/asm.h>
 #include <roscfg.h>
 #include <ndk/asm.h>
-#include <ndk/i386/segment.h>
 
 #define AP_MAGIC (0x12481020)
 
 
 #define AP_MAGIC (0x12481020)
 
index cb84667..3e15f03 100644 (file)
@@ -8,7 +8,6 @@
 #include <roscfg.h>
 #include <internal/i386/ke.h>
 #include <ndk/asm.h>
 #include <roscfg.h>
 #include <internal/i386/ke.h>
 #include <ndk/asm.h>
-#include <ndk/i386/segment.h>
 
 #define UserMode  (1)
 #define STATUS_INVALID_SYSTEM_SERVICE 0xC000001C
 
 #define UserMode  (1)
 #define STATUS_INVALID_SYSTEM_SERVICE 0xC000001C
index 952bdbc..74fbd92 100644 (file)
@@ -11,7 +11,6 @@
 #include <roscfg.h>
 #include <ndk/asm.h>
 #include <internal/i386/ke.h>
 #include <roscfg.h>
 #include <ndk/asm.h>
 #include <internal/i386/ke.h>
-#include <ndk/i386/segment.h>
 
 #define KernelMode 0
 #define UserMode 1
 
 #define KernelMode 0
 #define UserMode 1
index 0b62a10..4753567 100644 (file)
@@ -537,8 +537,8 @@ int main(int argc, char* argv[])
     WriteFileHeader(Files[NtosKernelStubs], 
                     "System Call Stubs for Native API", 
                     argv[NtosKernelStubs + 1]);
     WriteFileHeader(Files[NtosKernelStubs], 
                     "System Call Stubs for Native API", 
                     argv[NtosKernelStubs + 1]);
-    fputs("#include <ndk/i386/segment.h>\n\n", Files[NtosKernelStubs]);
-    
+    fputs("#include <ndk/asm.h>\n\n", Files[NtosKernelStubs]);
+
     WriteFileHeader(Files[Win32kGdiStubs], 
                     "System Call Stubs for Native API", 
                     argv[Win32kGdiStubs + 1]);
     WriteFileHeader(Files[Win32kGdiStubs], 
                     "System Call Stubs for Native API", 
                     argv[Win32kGdiStubs + 1]);
@@ -546,7 +546,7 @@ int main(int argc, char* argv[])
     WriteFileHeader(Files[Win32kUserStubs], 
                     "System Call Stubs for Native API", 
                     argv[Win32kUserStubs + 1]);
     WriteFileHeader(Files[Win32kUserStubs], 
                     "System Call Stubs for Native API", 
                     argv[Win32kUserStubs + 1]);
-    
+
 
     /* Create the System Stubs */
     CreateStubs(Files[NativeSystemDb],
 
     /* Create the System Stubs */
     CreateStubs(Files[NativeSystemDb],