diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-16 20:28:11 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-16 20:28:11 -0500 |
| commit | 8bf5d4e496a320d37cd03ed6cd0516acb187720d (patch) | |
| tree | 341b5bdd9e44e6adbcc05700a5fb0d3d72002682 /sys/inc/mu/cpu.h | |
| parent | 65fe882d0c8d1f67579ad920e4f29a7c93b7cbfa (diff) | |
kern/amd64+mu: Introduce percpu machine core block
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/inc/mu/cpu.h')
| -rw-r--r-- | sys/inc/mu/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/inc/mu/cpu.h b/sys/inc/mu/cpu.h index c96184b..d49c22e 100644 --- a/sys/inc/mu/cpu.h +++ b/sys/inc/mu/cpu.h @@ -31,14 +31,17 @@ #define _MU_CPU_H_ 1 #include <sys/types.h> +#include <md/mcb.h> /* * Processor descriptor * * @id: Logical ID of the processor + * @mcb: Machine core block */ struct cpu_info { uint8_t id; + struct mcb *mcb; }; /* |
