diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-23 19:45:17 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-23 19:48:31 -0400 |
commit | e7d255e0d52446e510c5287f52c877ddaaab6d25 (patch) | |
tree | 1f2ec593d0240a5a6d724f994d5558c02804b54f /sys | |
parent | a0bb2191d900631acd33276a028397b0a9b3fb5d (diff) |
kernel/amd64: lapic: Add IPI_SHORTHAND_NONE
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/arch/amd64/lapic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/arch/amd64/lapic.h b/sys/include/arch/amd64/lapic.h index 5ab810a..c8a4de4 100644 --- a/sys/include/arch/amd64/lapic.h +++ b/sys/include/arch/amd64/lapic.h @@ -37,6 +37,7 @@ /* IPI Destination Shorthands */ enum { + IPI_SHORTHAND_NONE, IPI_SHORTHAND_SELF, IPI_SHORTHAND_ALL, IPI_SHORTHAND_OTHERS |