From: Matthias Kruk Date: Mon, 18 Nov 2019 11:36:27 +0000 (+0900) Subject: Add SYS_SLEEP and SYS_EXECFVE definitions to corax/syscall.h X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=54350b9c9bbef02bf8c13d883368dc21e9cc197c;p=corax Add SYS_SLEEP and SYS_EXECFVE definitions to corax/syscall.h --- 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