kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 0314521658f1e55cd2cdef8261d4ec525c886d1b
parent aafecb9485dd1a4ac10732ca04deef8fc4a7d946
Author: Joris Vink <joris@coders.se>
Date:   Thu, 26 Sep 2019 09:28:12 +0200

shuffle some stuff around

Diffstat:
src/seccomp.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/seccomp.c b/src/seccomp.c @@ -87,11 +87,11 @@ static struct sock_filter filter_kore[] = { KORE_SYSCALL_ALLOW(sigaltstack), KORE_SYSCALL_ALLOW(rt_sigreturn), KORE_SYSCALL_ALLOW(rt_sigaction), - KORE_SYSCALL_ALLOW(clock_gettime), + KORE_SYSCALL_ALLOW(rt_sigprocmask), /* "Other" without clear category. */ KORE_SYSCALL_ALLOW(futex), - KORE_SYSCALL_ALLOW(rt_sigprocmask), + KORE_SYSCALL_ALLOW(clock_gettime), #if defined(__NR_getrandom) KORE_SYSCALL_ALLOW(getrandom),