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