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

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

Merge "Allow __NR_pipe for 32-bit processes" am: 6f9a034c am: b6add247

am: 1b553da8

Change-Id: I3fd8fecc40fd46cd9f792e385abbdc82e2e2286d
parents a88bbb31 1b553da8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -213,6 +213,9 @@ bool set_seccomp_filter() {
    // Needed for kernel to restart syscalls
    AllowSyscall(f, 0);  // __NR_restart_syscall

    // Needed for debugging 32-bit Chrome
    AllowSyscall(f, 42); // __NR_pipe

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