diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-17 16:50:25 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-17 16:50:25 -0500 |
| commit | d20dbfa4d934259cf1b4acd6c00af306ebddfdad (patch) | |
| tree | 1d077e25f078c9f792bdbdb0fdd92e2833e75172 /sys/inc | |
| parent | 7a9a1dceaa681e7a09c626a3b5ce7b142e73ece5 (diff) | |
kern/amd64: mp: Add multiprocessing groundwork
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/inc')
| -rw-r--r-- | sys/inc/mu/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/inc/mu/cpu.h b/sys/inc/mu/cpu.h index 8965ec3..141843d 100644 --- a/sys/inc/mu/cpu.h +++ b/sys/inc/mu/cpu.h @@ -55,4 +55,9 @@ struct cpu_info *cpu_self(void); */ void cpu_conf(struct cpu_info *ci); +/* + * Bring up application processors + */ +void cpu_start_aps(struct cpu_info *ci); + #endif /* !_MU_CPU_H_ */ |
