Skip to content

Commit 8a72b6b

Browse files
committed
Kernel: Remove leftovers from x86 software interrupt-based syscalls
This definition and the accompanying VERIFY is unnecessary since bfbb4bc removed support for `int 0x82` syscalls.
1 parent cea5a78 commit 8a72b6b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Kernel/API/Syscall.h

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
# include <Kernel/Arch/RegisterState.h>
1717
#endif
1818

19-
constexpr int syscall_vector = 0x82;
20-
2119
extern "C" {
2220
struct pollfd;
2321
struct timeval;

Kernel/Arch/x86_64/InterruptManagement.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ u8 InterruptManagement::acquire_irq_number(u8 mapped_interrupt_vector)
8686
u8 InterruptManagement::get_mapped_interrupt_vector(u8 original_irq)
8787
{
8888
// 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);
9189
return original_irq;
9290
}
9391

0 commit comments

Comments
 (0)