Skip to content
Snippets Groups Projects
Commit 4ba89c0c authored by Alexander Hansen Færøy's avatar Alexander Hansen Færøy
Browse files

Merge branch 'maint-0.4.5' into maint-0.4.6

parents 32356a60 c213c1b0
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (linux seccomp2 sandbox):
- Allow the rseq system call in the sandbox. This solves a crash issue with
glibc 2.35 on Linux. Patch from pmu-ipf. Fixes bug 40601; bugfix on
0.3.5.11.
......@@ -227,6 +227,9 @@ static int filter_nopar_gen[] = {
#endif
SCMP_SYS(read),
SCMP_SYS(rt_sigreturn),
#ifdef __NR_rseq
SCMP_SYS(rseq),
#endif
SCMP_SYS(sched_getaffinity),
#ifdef __NR_sched_yield
SCMP_SYS(sched_yield),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment