[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 15/19] bsd-user: Add SIGSYS to core dump signals.
From: |
Warner Losh |
Subject: |
[PATCH v2 15/19] bsd-user: Add SIGSYS to core dump signals. |
Date: |
Mon, 10 Apr 2023 12:20:52 -0600 |
SIGSYS creates a core by default if uncaught. Follow that here. Sort
with the same order as is in the kernel.
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/signal.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/bsd-user/signal.c b/bsd-user/signal.c
index f4e078ee1da..4301595cc2f 100644
--- a/bsd-user/signal.c
+++ b/bsd-user/signal.c
@@ -330,17 +330,22 @@ int block_signals(void)
return qatomic_xchg(&ts->signal_pending, 1);
}
-/* Returns 1 if given signal should dump core if not handled. */
+/*
+ * Returns 1 if given signal should dump core if not handled.
+ * Compare with kern_sig.c sigproptbl[].
+ */
static int core_dump_signal(int sig)
{
switch (sig) {
+ case TARGET_SIGQUIT:
+ case TARGET_SIGILL:
+ case TARGET_SIGTRAP:
case TARGET_SIGABRT:
+ case TARGET_SIGEMT:
case TARGET_SIGFPE:
- case TARGET_SIGILL:
- case TARGET_SIGQUIT:
case TARGET_SIGSEGV:
- case TARGET_SIGTRAP:
case TARGET_SIGBUS:
+ case TARGET_SIGSYS:
return 1;
default:
return 0;
--
2.40.0
- [PATCH v2 11/19] bsd-user: Implement do_sysctl_kern_proc_filedesc, (continued)
- [PATCH v2 11/19] bsd-user: Implement do_sysctl_kern_proc_filedesc, Warner Losh, 2023/04/10
- [PATCH v2 09/19] bsd-user: h2g_rusage, Warner Losh, 2023/04/10
- [PATCH v2 12/19] bsd-user: Implement do_sysctl_kern_proc_vmmap, Warner Losh, 2023/04/10
- [PATCH v2 13/19] bsd-user: Implement sysctl kern.proc, except kern.proc.full_path, Warner Losh, 2023/04/10
- [PATCH v2 02/19] bsd-user: Ifdef a few MAP_ constants for NetBSD / OpenBSD., Warner Losh, 2023/04/10
- [PATCH v2 17/19] bsd-user: Remove host-os.h, Warner Losh, 2023/04/10
- [PATCH v2 19/19] bsd-user: Eliminate USE_ELF_CORE_DUMP, Warner Losh, 2023/04/10
- [PATCH v2 15/19] bsd-user: Add SIGSYS to core dump signals.,
Warner Losh <=
- [PATCH v2 14/19] bsd-user: Implement core dumps, Warner Losh, 2023/04/10
- [PATCH v2 16/19] bsd-user: Implement SIGSYS on arm, Warner Losh, 2023/04/10
- [PATCH v2 18/19] bsd-user: Update system call list, Warner Losh, 2023/04/10