diff options
author | 2017-02-03 21:16:59 +0000 | |
---|---|---|
committer | 2017-02-03 21:17:00 +0000 | |
commit | fe88a5e81dade2a33057a25dd05dea637601ac4b (patch) | |
tree | 205daf65163f5f7771581b125966ecd041642167 | |
parent | 802b0c8fd1a18676f0d87e392f8d2ba72aed0a84 (diff) | |
parent | 88ec14b0e54be405609d3d0b75559da09c29eb80 (diff) |
Merge "Expand whitelist"
-rw-r--r-- | core/jni/android_os_seccomp.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/jni/android_os_seccomp.cpp b/core/jni/android_os_seccomp.cpp index 75b898e8b63a..2fe5d3918867 100644 --- a/core/jni/android_os_seccomp.cpp +++ b/core/jni/android_os_seccomp.cpp @@ -206,6 +206,9 @@ bool set_seccomp_filter() { // already allowed. AllowSyscall(f, 85); // __NR_readlink + // b/34908783 + AllowSyscall(f, 250); // __NR_epoll_create + Trap(f); return install_filter(f); |