mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 20:36:48 +00:00
19 lines
313 B
C
19 lines
313 B
C
#pragma once
|
|
#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();
|