aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-08-11 03:02:58 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-08-11 03:02:58 +0000
commita8d25fb698b092714ef73c684db69260e2047ed4 (patch)
treebb9713272d8f0282409ce6f8495fb7cf86600a8b
parent6d9062fcc7f87a8ede00330044d7711ea58ae0d3 (diff)
parent941662ca4b7172c5b2d14344463224441b6a3572 (diff)
downloadstrace-a8d25fb698b092714ef73c684db69260e2047ed4.tar.gz
Merge "Add PROT_BTI and PROT_MTE to strace." into main am: e017bac325 am: ae2641da9f am: 88a4a17e6e am: 941662ca4b
Original change: https://android-review.googlesource.com/c/platform/external/strace/+/2704457 Change-Id: I2cbaaf9da40f48130b23d3830e6ab349ec63c4af 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
};