From d865b5413ec0f036c1e13d139ac1aa0643dbde25 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Wed, 2 Oct 2019 16:36:55 +0900 Subject: [PATCH] Add definitions for syscall interrupt vectors to corax/syscall.h --- include/corax/syscall.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/corax/syscall.h b/include/corax/syscall.h index 1846df3..ac51884 100644 --- a/include/corax/syscall.h +++ b/include/corax/syscall.h @@ -15,4 +15,8 @@ #define SYS_POLL 11 #define SYS_BIND 12 +#define SYSCALL_CORAX 0xCC +#define SYSCALL_CXNET 0xCD +#define SYSCALL_POSIX 0x80 + #endif /* __CORAX_SYSCALL_H */ -- 2.47.3