[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH 19/23] Add FPE_FLTIDO
From: |
Sergey Bugaev |
Subject: |
[RFC PATCH 19/23] Add FPE_FLTIDO |
Date: |
Wed, 3 Jan 2024 20:14:52 +0300 |
This is a new si_code value for the SIGFPE signal that has been added
to FreeBSD, and is also going to be used on the Hurd.
Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
---
bits/siginfo-consts.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/bits/siginfo-consts.h b/bits/siginfo-consts.h
index 4eef775e..362a06a6 100644
--- a/bits/siginfo-consts.h
+++ b/bits/siginfo-consts.h
@@ -75,8 +75,10 @@ enum
# define FPE_FLTRES FPE_FLTRES
FPE_FLTINV, /* Floating point invalid operation. */
# define FPE_FLTINV FPE_FLTINV
- FPE_FLTSUB /* Subscript out of range. */
+ FPE_FLTSUB, /* Subscript out of range. */
# define FPE_FLTSUB FPE_FLTSUB
+ FPE_FLTIDO /* Input denormal operation. */
+# define FPE_FLTIDO FPE_FLTIDO
};
/* `si_code' values for SIGSEGV signal. */
--
2.43.0
- [RFC PATCH 10/23] hurd: Only init early static TLS if it's used to store stack or pointer guards, (continued)
- [RFC PATCH 10/23] hurd: Only init early static TLS if it's used to store stack or pointer guards, Sergey Bugaev, 2024/01/03
- [RFC PATCH 11/23] hurd: Initializy _dl_pagesize early in static builds, Sergey Bugaev, 2024/01/03
- [RFC PATCH 12/23] aarch64: Make cpu-features definitions not Linux-specific, Sergey Bugaev, 2024/01/03
- [RFC PATCH 13/23] aarch64: Add dl-procinfo, Sergey Bugaev, 2024/01/03
- [RFC PATCH 14/23] aarch64: Allow building without kernel support for BTI, Sergey Bugaev, 2024/01/03
- [RFC PATCH 15/23] mach: Add a basic AArch64 port, Sergey Bugaev, 2024/01/03
- [RFC PATCH 16/23] hurd: Add a basic AArch64 port, Sergey Bugaev, 2024/01/03
- [RFC PATCH 19/23] Add FPE_FLTIDO,
Sergey Bugaev <=
- [RFC PATCH 18/23] hurd: Implement longjmp for AArch64, Sergey Bugaev, 2024/01/03
- [RFC PATCH 21/23] htl: Implement some support for TLS_DTV_AT_TP, Sergey Bugaev, 2024/01/03
- [RFC PATCH 22/23] htl: Add an AArch64 implementation, Sergey Bugaev, 2024/01/03
- [RFC PATCH 17/23] hurd: Implement TLS on AArch64, Sergey Bugaev, 2024/01/03
- [RFC PATCH 23/23] hurd: Add expected aarch64-gnu abistlists, Sergey Bugaev, 2024/01/03
- [RFC PATCH 20/23] hurd: Add an AArch64 signal implementation, Sergey Bugaev, 2024/01/03
- [RFC PATCH 05/23] hurd: Disable Prefer_MAP_32BIT_EXEC on non-x86_64 for now, Sergey Bugaev, 2024/01/03
- Re: [RFC PATCH 00/23] aarch64-gnu port, Joseph Myers, 2024/01/03