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 4ed6136693e0519c1ed5e7684e7ca0882628bd2a
parent 9dc12af1a4cdc8976a7b6f475745f36a133efcca
Author: Joris Vink <joris@coders.se>
Date:   Thu, 26 Sep 2019 10:20:30 +0200

add 2 more missing syscalls for musl to keymgr.

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

diff --git a/src/keymgr.c b/src/keymgr.c @@ -72,6 +72,7 @@ static struct sock_filter filter_keymgr[] = { KORE_SYSCALL_ALLOW(sendto), KORE_SYSCALL_ALLOW(recvfrom), KORE_SYSCALL_ALLOW(epoll_wait), + KORE_SYSCALL_ALLOW(epoll_pwait), /* Process things. */ KORE_SYSCALL_ALLOW(exit), @@ -86,6 +87,7 @@ static struct sock_filter filter_keymgr[] = { KORE_SYSCALL_ALLOW(rt_sigprocmask), /* Other things. */ + KORE_SYSCALL_ALLOW(brk), KORE_SYSCALL_ALLOW(mmap), KORE_SYSCALL_ALLOW(munmap), #if defined(__NR_getrandom)