mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
24 lines
570 B
C
24 lines
570 B
C
|
/*
|
||
|
* PROJECT: ReactOS Kernel
|
||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||
|
* PURPOSE: Architecture specific source file to hold multiprocessor functions
|
||
|
* COPYRIGHT: Copyright 2023 Justin Miller <justin.miller@reactos.org>
|
||
|
*/
|
||
|
|
||
|
/* INCLUDES *****************************************************************/
|
||
|
|
||
|
#include <ntoskrnl.h>
|
||
|
|
||
|
#define NDEBUG
|
||
|
#include <debug.h>
|
||
|
|
||
|
/* FUNCTIONS *****************************************************************/
|
||
|
|
||
|
CODE_SEG("INIT")
|
||
|
VOID
|
||
|
NTAPI
|
||
|
KeStartAllProcessors(VOID)
|
||
|
{
|
||
|
UNIMPLEMENTED;
|
||
|
}
|