summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2020-12-19 22:12:50 +0000
committerRich Felker <dalias@aerifal.cx>2021-02-15 09:16:06 -0500
commit87b8f14811abe5b707ebe109296bcb0efbebcce2 (patch)
tree6bb761b8f4ae563ea06e8d7a6ed04805f362fe07
parent19239cde94ff08c008b72f041676712dc447b80f (diff)
downloadmusl-87b8f14811abe5b707ebe109296bcb0efbebcce2.tar.gz
signal.h: add MTE specific SIGSEGV codes from linux v5.10
add synchronouse and asynchronous tag check failure codes, see linux commit 74f1082487feb90bbf880af14beb8e29c3030c9f arm64: mte: Add specific SIGSEGV codes
-rw-r--r--include/signal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h
index 9ed929e4..f270a594 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -75,6 +75,8 @@ typedef struct sigaltstack stack_t;
#define SEGV_ACCERR 2
#define SEGV_BNDERR 3
#define SEGV_PKUERR 4
+#define SEGV_MTEAERR 8
+#define SEGV_MTESERR 9
#define BUS_ADRALN 1
#define BUS_ADRERR 2