Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bcf7d897 authored by Paul Lawrence's avatar Paul Lawrence Committed by android-build-merger
Browse files

Merge "Allow failing app through seccomp policy" am: d0ff90af am: 50e88dc5 am: ac1e8d91

am: 967e8528

Change-Id: I786f9537070e9e892b44f47d8e707444043c7113
parents c39a9867 967e8528
Loading
Loading
Loading
Loading
+7 −3
Original line number Original line Diff line number Diff line
@@ -219,6 +219,10 @@ bool set_seccomp_filter() {
    // b/34732712
    // b/34732712
    AllowSyscall(f, 364); // __NR_perf_event_open
    AllowSyscall(f, 364); // __NR_perf_event_open


    // b/34651972
    AllowSyscall(f, 33);  // __NR_access
    AllowSyscall(f, 195); // __NR_stat64

    // arm32-on-arm64 only filter - autogenerated from bionic syscall usage
    // arm32-on-arm64 only filter - autogenerated from bionic syscall usage
    for (size_t i = 0; i < arm_filter_size; ++i)
    for (size_t i = 0; i < arm_filter_size; ++i)
        f.push_back(arm_filter[i]);
        f.push_back(arm_filter[i]);