We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cea5a78 commit 8a72b6bCopy full SHA for 8a72b6b
Kernel/API/Syscall.h
@@ -16,8 +16,6 @@
16
# include <Kernel/Arch/RegisterState.h>
17
#endif
18
19
-constexpr int syscall_vector = 0x82;
20
-
21
extern "C" {
22
struct pollfd;
23
struct timeval;
Kernel/Arch/x86_64/InterruptManagement.cpp
@@ -86,8 +86,6 @@ u8 InterruptManagement::acquire_irq_number(u8 mapped_interrupt_vector)
86
u8 InterruptManagement::get_mapped_interrupt_vector(u8 original_irq)
87
{
88
// FIXME: For SMP configuration (with IOAPICs) use a better routing scheme to make redirections more efficient.
89
- // FIXME: Find a better way to handle conflict with Syscall interrupt gate.
90
- VERIFY((original_irq + IRQ_VECTOR_BASE) != syscall_vector);
91
return original_irq;
92
}
93
0 commit comments