[RSHELL]
[reactos.git] / ntoskrnl / ke / krnlinit.c
index d22fe7e..128d90f 100644 (file)
 
 /* GLOBALS *******************************************************************/
 
+/* Portable CPU Features and Flags */
+USHORT KeProcessorArchitecture;
+USHORT KeProcessorLevel;
+USHORT KeProcessorRevision;
+ULONG KeFeatureBits;
+KAFFINITY KeActiveProcessors = 1;
+
 /* System call count */
 ULONG KiServiceLimit = NUMBER_OF_SYSCALLS;
 
@@ -24,6 +31,9 @@ PLOADER_PARAMETER_BLOCK KeLoaderBlock;
 /* PRCB Array */
 PKPRCB KiProcessorBlock[MAXIMUM_PROCESSORS];
 
+/* Number of processors */
+UCHAR KeNumberProcessors = 0;
+
 /* NUMA Node Support */
 KNODE KiNode0;
 PKNODE KeNodeBlock[1];