diff options
Diffstat (limited to 'sys/inc/mu/cpu.h')
| -rw-r--r-- | sys/inc/mu/cpu.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/inc/mu/cpu.h b/sys/inc/mu/cpu.h index fb7aade..967005e 100644 --- a/sys/inc/mu/cpu.h +++ b/sys/inc/mu/cpu.h @@ -31,7 +31,17 @@ #define _MU_CPU_H_ 1 #include <sys/types.h> -#include <kern/cpu.h> + +/* + * Processor descriptor + * + * @id: Logical ID of the processor + * @self: Self pointer for referencing via %GS + */ +struct cpu_info { + uint8_t id; + struct cpu_info *self; +}; /* * Get a reference to the processor descriptor |
