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

Commit 72b1fb6f authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "debuggerd seccomp: explain why we define PROT_READ/WRITE." am: 665e4c15 am: 55044777

am: e1cbc971

Change-Id: Ife944a1d1074c5e7fe6fc07c41c7931f0237ceb7
parents 9fbcb432 e1cbc971
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -33,9 +33,15 @@ rt_sigaction: 1
rt_tgsigqueueinfo: 1

#define PR_SET_VMA 0x53564d41
prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == PR_SET_VMA

#if 0
libminijail on vendor partitions older than P does not have constants from <sys/mman.h>.
Define the values of PROT_READ and PROT_WRITE ourselves to maintain backwards compatibility.
#else
#define PROT_READ 0x1
#define PROT_WRITE 0x2
prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == PR_SET_VMA
#endif

madvise: 1
mprotect: arg2 in PROT_READ|PROT_WRITE