Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenhalinit.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS HAL 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: hal/halx86/amd64/halinit.c 00005 * PURPOSE: HAL Entrypoint and Initialization 00006 * PROGRAMMERS: 00007 */ 00008 00009 /* INCLUDES ******************************************************************/ 00010 00011 #include <hal.h> 00012 #define NDEBUG 00013 #include <debug.h> 00014 00015 /* GLOBALS *******************************************************************/ 00016 00017 BOOLEAN HalpPciLockSettings; 00018 00019 /* PRIVATE FUNCTIONS *********************************************************/ 00020 00021 /* FUNCTIONS *****************************************************************/ 00022 #if 0 00023 VOID 00024 NTAPI 00025 HalpInitProcessor( 00026 IN ULONG ProcessorNumber, 00027 IN PLOADER_PARAMETER_BLOCK LoaderBlock) 00028 { 00029 DPRINT1("ApicInitializeProcessor(%ld)\n", ProcessorNumber); 00030 00031 /* Initialize the local APIC for this cpu */ 00032 ApicInitializeLocalApic(ProcessorNumber); 00033 00034 /* Initialize the timer */ 00035 //ApicInitializeTimer(ProcessorNumber); 00036 00037 } 00038 00039 00040 VOID 00041 HalpInitPhase0(IN PLOADER_PARAMETER_BLOCK LoaderBlock) 00042 { 00043 00044 } 00045 00046 VOID 00047 HalpInitPhase1(VOID) 00048 { 00049 00050 } 00051 00052 #endif 00053 Generated on Sat May 26 2012 04:27:16 for ReactOS by
1.7.6.1
|