From 54350b9c9bbef02bf8c13d883368dc21e9cc197c Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Mon, 18 Nov 2019 20:36:27 +0900 Subject: [PATCH] Add SYS_SLEEP and SYS_EXECFVE definitions 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 083258a..d8e20df 100644 --- a/include/corax/syscall.h +++ b/include/corax/syscall.h @@ -22,6 +22,10 @@ #define SYS_WAITPID 4 #define SYS_WAITID 5 #define SYS_SETSID 6 +#define SYS_SLEEP 7 + +/* Corax-specific variations of POSIX syscalls */ +#define SYS_EXECFVE 128 #define IPC_SEND 0 #define IPC_RECV 1 -- 2.47.3