xref: /reactos/ntoskrnl/ke/amd64/mproc.c (revision 4514e91d)
1 /*
2  * PROJECT:     ReactOS Kernel
3  * LICENSE:     GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4  * PURPOSE:     Architecture specific source file to hold multiprocessor functions
5  * COPYRIGHT:   Copyright 2023 Justin Miller <justin.miller@reactos.org>
6  */
7 
8 /* INCLUDES *****************************************************************/
9 
10 #include <ntoskrnl.h>
11 
12 #define NDEBUG
13 #include <debug.h>
14 
15 /* FUNCTIONS *****************************************************************/
16 
17 CODE_SEG("INIT")
18 VOID
19 NTAPI
20 KeStartAllProcessors(VOID)
21 {
22     UNIMPLEMENTED;
23 }
24