diff options
author | Joseph Myers <joseph@codesourcery.com> | 2023-11-03 16:36:35 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2023-11-03 16:36:35 +0000 |
commit | ac79930498d1fa8a85f367c8e21cd2abbfa5bebb (patch) | |
tree | 7b97fb3b24ddb512ffacc746a009fe8e3765a860 | |
parent | d3476c20b29782453aa5d432a62eed4dde7d6269 (diff) | |
download | glibc-ac79930498d1fa8a85f367c8e21cd2abbfa5bebb.zip glibc-ac79930498d1fa8a85f367c8e21cd2abbfa5bebb.tar.gz glibc-ac79930498d1fa8a85f367c8e21cd2abbfa5bebb.tar.bz2 |
Add SEGV_CPERR from Linux 6.6 to bits/siginfo-consts.h
Linux 6.6 adds the constant SEGV_CPERR. Add it to glibc's
bits/siginfo-consts.h.
Tested for x86_64.
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/siginfo-consts.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/siginfo-consts.h b/sysdeps/unix/sysv/linux/bits/siginfo-consts.h index 49f7744..2236def 100644 --- a/sysdeps/unix/sysv/linux/bits/siginfo-consts.h +++ b/sysdeps/unix/sysv/linux/bits/siginfo-consts.h @@ -134,8 +134,10 @@ enum # define SEGV_ADIPERR SEGV_ADIPERR SEGV_MTEAERR, /* Asynchronous ARM MTE error. */ # define SEGV_MTEAERR SEGV_MTEAERR - SEGV_MTESERR /* Synchronous ARM MTE exception. */ + SEGV_MTESERR, /* Synchronous ARM MTE exception. */ # define SEGV_MTESERR SEGV_MTESERR + SEGV_CPERR /* Control protection fault. */ +# define SEGV_CPERR SEGV_CPERR }; /* `si_code' values for SIGBUS signal. */ |