Symbol: SIGABRT
arch/alpha/include/uapi/asm/signal.h
57
#define SIGIOT SIGABRT
arch/loongarch/kernel/asm-offsets.c
237
DEFINE(_SIGABRT, SIGABRT);
arch/mips/kernel/asm-offsets.c
275
DEFINE(_SIGABRT, SIGABRT);
arch/powerpc/kernel/traps.c
1548
die("Unrecoverable exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
1692
die("Unrecoverable FP Unavailable Exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
1706
die("Unrecoverable VMX/Altivec Unavailable Exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
1720
die("Unrecoverable VSX Unavailable Exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
1737
die("Unrecoverable TM Unavailable Exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
1777
die("Unexpected facility unavailable exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
2240
die("Unrecoverable exception", regs, SIGABRT);
arch/powerpc/kernel/traps.c
2263
die("Bad kernel stack pointer", regs, SIGABRT);
arch/powerpc/kernel/traps.c
495
die("System Reset", regs, SIGABRT);
arch/powerpc/kernel/traps.c
505
die("Unrecoverable nested System Reset", regs, SIGABRT);
arch/powerpc/kernel/traps.c
511
die("Unrecoverable System Reset", regs, SIGABRT);
arch/powerpc/kernel/traps.c
880
die("System Management Interrupt", regs, SIGABRT);
arch/um/os-Linux/util.c
91
if (!sigemptyset(&sig) && !sigaddset(&sig, SIGABRT))
arch/um/os-Linux/util.c
95
if (kill(getpid(), SIGABRT) < 0)
include/linux/signal.h
428
rt_sigmask(SIGTRAP) | rt_sigmask(SIGABRT) | \
security/apparmor/include/sig_names.h
15
[SIGABRT] = 6, /* SIGIOT: -, 6, - */
tools/iio/iio_generic_buffer.c
321
const int signums[] = { SIGINT, SIGTERM, SIGABRT };
tools/include/nolibc/stackprotector.h
29
my_syscall2(__NR_kill, pid, SIGABRT);
tools/include/nolibc/stdlib.h
58
sys_kill(sys_getpid(), SIGABRT);
tools/objtool/signal.c
102
int signals[] = {SIGSEGV, SIGBUS, SIGILL, SIGABRT};
tools/objtool/signal.c
38
case SIGABRT: sig_name = "SIGABRT"; break;
tools/perf/builtin-stat.c
2950
signal(SIGABRT, skip_signal);
tools/perf/tests/builtin-test.c
326
SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGINT, SIGPIPE, SIGQUIT, SIGSEGV, SIGTERM,
tools/testing/selftests/coredump/coredump_socket_protocol_test.c
1209
if (info.coredump_signal != SIGABRT) {
tools/testing/selftests/coredump/coredump_socket_protocol_test.c
1211
info.coredump_signal, SIGABRT);
tools/testing/selftests/coredump/coredump_socket_protocol_test.c
1258
ASSERT_EQ(WTERMSIG(status), SIGABRT);
tools/testing/selftests/coredump/coredump_socket_protocol_test.c
1263
ASSERT_EQ(info.coredump_signal, SIGABRT);
tools/testing/selftests/coredump/coredump_socket_test.c
652
if (info.coredump_signal != SIGABRT) {
tools/testing/selftests/coredump/coredump_socket_test.c
654
info.coredump_signal, SIGABRT);
tools/testing/selftests/coredump/coredump_socket_test.c
714
ASSERT_EQ(WTERMSIG(status), SIGABRT);
tools/testing/selftests/coredump/coredump_socket_test.c
720
ASSERT_EQ(info.coredump_signal, SIGABRT);
tools/testing/selftests/kselftest_harness.h
1050
if (WTERMSIG(status) == SIGABRT) {
tools/testing/selftests/nolibc/nolibc-test.c
1879
if (pid == -1 || !WIFSIGNALED(status) || WTERMSIG(status) != SIGABRT) {