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 0b659807bf6c05b212fa82d72fa4a9593506dd7a
parent 0268a0ae0af7dd96f0b4cdd43ed9c1b278fd0558
Author: Joris Vink <joris@coders.se>
Date:   Tue, 14 Jul 2020 15:47:58 +0200

more missing syscalls on aarch64

Diffstat:
src/acme.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/acme.c b/src/acme.c @@ -64,6 +64,7 @@ * we will have to reinclude the ones curl does. */ static struct sock_filter filter_acme[] = { + KORE_SYSCALL_ALLOW(prctl), #if defined(SYS_poll) KORE_SYSCALL_ALLOW(poll), #endif @@ -75,9 +76,11 @@ static struct sock_filter filter_acme[] = { #endif KORE_SYSCALL_ALLOW(epoll_pwait), KORE_SYSCALL_ALLOW(recvmsg), + KORE_SYSCALL_ALLOW(sendmsg), KORE_SYSCALL_ALLOW(sendmmsg), KORE_SYSCALL_ALLOW(getpeername), + KORE_SYSCALL_ALLOW(gettid), KORE_SYSCALL_ALLOW(exit), KORE_SYSCALL_ALLOW(brk),