diff --git a/examples/tasks/src/tasks.c b/examples/tasks/src/tasks.c index e21a6ea..a7ee1ce 100644 --- a/examples/tasks/src/tasks.c +++ b/examples/tasks/src/tasks.c @@ -55,6 +55,8 @@ KORE_SECCOMP_FILTER("tasks", KORE_SYSCALL_ALLOW(recvmsg), KORE_SYSCALL_ALLOW(sendmmsg), KORE_SYSCALL_ALLOW(getpeername), + KORE_SYSCALL_ALLOW(rseq), + KORE_SYSCALL_ALLOW(clone3), ); #endif diff --git a/misc/linux/aarch64_syscall.h.in b/misc/linux/aarch64_syscall.h.in index 955e2ca..47d1d51 100644 --- a/misc/linux/aarch64_syscall.h.in +++ b/misc/linux/aarch64_syscall.h.in @@ -287,4 +287,5 @@ #define __NR_fsconfig 431 #define __NR_fsmount 432 #define __NR_fspick 433 +#define __NR_clone3 435 diff --git a/misc/linux/arm_syscall.h.in b/misc/linux/arm_syscall.h.in index a565a4e..86334ed 100644 --- a/misc/linux/arm_syscall.h.in +++ b/misc/linux/arm_syscall.h.in @@ -387,6 +387,7 @@ #define __NR_fsconfig 431 #define __NR_fsmount 432 #define __NR_fspick 433 +#define __NR_clone3 435 #define __ARM_NR_breakpoint 0x0f0001 #define __ARM_NR_cacheflush 0x0f0002 diff --git a/misc/linux/x86_64_syscall.h.in b/misc/linux/x86_64_syscall.h.in index 2d4634f..d2cab06 100644 --- a/misc/linux/x86_64_syscall.h.in +++ b/misc/linux/x86_64_syscall.h.in @@ -343,4 +343,5 @@ #define __NR_fsconfig 431 #define __NR_fsmount 432 #define __NR_fspick 433 +#define __NR_clone3 435