mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 07:06:47 +00:00
16 lines
310 B
C
16 lines
310 B
C
#include "../common/glib.h"
|
|
|
|
#include "../common/asm.h"
|
|
#include "../driver/acpi/acpi.h"
|
|
#include "../driver/interrupt/apic/apic.h"
|
|
|
|
#define MAX_SUPPORTED_PROCESSOR_NUM 1024
|
|
|
|
extern uchar _apu_boot_start[];
|
|
extern uchar _apu_boot_end[];
|
|
/**
|
|
* @brief 初始化对称多核处理器
|
|
*
|
|
*/
|
|
void smp_init();
|