aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-08-11 00:08:19 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-08-11 00:08:19 +0000
commitae2641da9fecd7bcd50b01f6107d707ed27b135e (patch)
treebb9713272d8f0282409ce6f8495fb7cf86600a8b
parent8ffbb3ceefe20e962ccd7311c207b60927465048 (diff)
parente017bac3256839bb5b42e7819531913457b1166d (diff)
downloadstrace-ae2641da9fecd7bcd50b01f6107d707ed27b135e.tar.gz
Merge "Add PROT_BTI and PROT_MTE to strace." into main am: e017bac325
Original change: https://android-review.googlesource.com/c/platform/external/strace/+/2704457 Change-Id: Iaefe8beaef7432d59843acd24b960549fc325329 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--xlat/mmap_prot.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/xlat/mmap_prot.h b/xlat/mmap_prot.h
index 310e7f1e..edca99c2 100644
--- a/xlat/mmap_prot.h
+++ b/xlat/mmap_prot.h
@@ -41,6 +41,12 @@ const struct xlat mmap_prot[] = {
#if defined(PROT_ADI) || (defined(HAVE_DECL_PROT_ADI) && HAVE_DECL_PROT_ADI)
XLAT(PROT_ADI),
#endif
+#if defined(PROT_BTI)
+ XLAT(PROT_BTI),
+#endif
+#if defined(PROT_MTE)
+ XLAT(PROT_MTE),
+#endif
XLAT_END
};