summaryrefslogtreecommitdiff
path: root/include/hilbert/kernel/syscall.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/hilbert/kernel/syscall.hpp')
-rw-r--r--include/hilbert/kernel/syscall.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/hilbert/kernel/syscall.hpp b/include/hilbert/kernel/syscall.hpp
deleted file mode 100644
index c83e514..0000000
--- a/include/hilbert/kernel/syscall.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <cstdint>
-
-namespace hilbert::kernel::syscall {
-
- typedef void (*syscall_handler)(
- uint64_t &rax, uint64_t &rdi, uint64_t &rsi, uint64_t &rdx);
-
- void init_syscalls();
-
- //assumes this rax has not been used yet and is < 256.
- void add_syscall(uint64_t rax, syscall_handler handler);
-
-}