diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-20 20:35:38 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-20 20:37:07 -0400 |
commit | f290314f286b70a8f59becedd5f789c21f675b5d (patch) | |
tree | 6e57e88ab2cf9580116a7ddcf68d505266380aee /sys/include/arch/amd64/cpu.h | |
parent | d8ba24147205e083a00ee76933cf047a8f8f5727 (diff) |
kernel/amd64: intr: Add splraise/splx support
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/arch/amd64/cpu.h')
-rw-r--r-- | sys/include/arch/amd64/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/arch/amd64/cpu.h b/sys/include/arch/amd64/cpu.h index b5420a6..16936e9 100644 --- a/sys/include/arch/amd64/cpu.h +++ b/sys/include/arch/amd64/cpu.h @@ -38,6 +38,7 @@ struct cpu_info { uint32_t apicid; uint8_t has_x2apic : 1; + uint8_t ipl; size_t lapic_tmr_freq; struct tss_entry *tss; struct proc *curtd; |