mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 22:36:48 +00:00
12 lines
189 B
C
12 lines
189 B
C
//
|
|
// Created by longjin on 2022/1/20.
|
|
//
|
|
|
|
#include <common/cpu.h>
|
|
|
|
|
|
void __init_set_cpu_stack_start(uint32_t cpu, uint64_t stack_start)
|
|
{
|
|
cpu_core_info[cpu].stack_start = stack_start;
|
|
}
|