1 /* 2 * PROJECT: ReactOS Kernel 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: AMD64 Application Processor (AP) spinup setup 5 * COPYRIGHT: Copyright 2023 Justin Miller <justin.miller@reactos.org> 6 */ 7 8 /* INCLUDES ******************************************************************/ 9 10 #include <hal.h> 11 #include <smp.h> 12 13 #define NDEBUG 14 #include <debug.h> 15 16 BOOLEAN 17 NTAPI 18 HalStartNextProcessor( 19 _In_ PLOADER_PARAMETER_BLOCK LoaderBlock, 20 _In_ PKPROCESSOR_STATE ProcessorState) 21 { 22 //TODO: 23 return FALSE; 24 } 25