mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Merge branch 'bug24969_029_v2' into maint-0.2.9
This commit is contained in:
commit
9727b4c5d6
3
changes/bug24969
Normal file
3
changes/bug24969
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (Linux seccomp2 sandbox):
|
||||
- Allow the nanosleep() system call, which glibc uses to implement
|
||||
sleep() and usleep(). Fixes bug 24969; bugfix on 0.2.5.1-alpha.
|
@ -185,6 +185,9 @@ static int filter_nopar_gen[] = {
|
||||
SCMP_SYS(mmap),
|
||||
#endif
|
||||
SCMP_SYS(munmap),
|
||||
#ifdef __NR_nanosleep
|
||||
SCMP_SYS(nanosleep),
|
||||
#endif
|
||||
#ifdef __NR_prlimit
|
||||
SCMP_SYS(prlimit),
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user