sys_signame.c (1547B)
- // utils-std: Collection of commonly available Unix tools
- // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- // SPDX-License-Identifier: CC0-1.0 OR WTFPL
- // /!\ File generated by lib/sys_signame.sh avoid editing
- #include "sys_signame.h"
- const char *util_sys_signame[NSIG] = {
- #ifdef SIGABRT
- [SIGABRT] = "ABRT",
- #endif
- #ifdef SIGALRM
- [SIGALRM] = "ALRM",
- #endif
- #ifdef SIGBUS
- [SIGBUS] = "BUS",
- #endif
- #ifdef SIGCHLD
- [SIGCHLD] = "CHLD",
- #endif
- #ifdef SIGCONT
- [SIGCONT] = "CONT",
- #endif
- #ifdef SIGFPE
- [SIGFPE] = "FPE",
- #endif
- #ifdef SIGHUP
- [SIGHUP] = "HUP",
- #endif
- #ifdef SIGILL
- [SIGILL] = "ILL",
- #endif
- #ifdef SIGINT
- [SIGINT] = "INT",
- #endif
- #ifdef SIGKILL
- [SIGKILL] = "KILL",
- #endif
- #ifdef SIGPIPE
- [SIGPIPE] = "PIPE",
- #endif
- #ifdef SIGQUIT
- [SIGQUIT] = "QUIT",
- #endif
- #ifdef SIGSEGV
- [SIGSEGV] = "SEGV",
- #endif
- #ifdef SIGSTOP
- [SIGSTOP] = "STOP",
- #endif
- #ifdef SIGTERM
- [SIGTERM] = "TERM",
- #endif
- #ifdef SIGTSTP
- [SIGTSTP] = "TSTP",
- #endif
- #ifdef SIGTTIN
- [SIGTTIN] = "TTIN",
- #endif
- #ifdef SIGTTOU
- [SIGTTOU] = "TTOU",
- #endif
- #ifdef SIGUSR1
- [SIGUSR1] = "USR1",
- #endif
- #ifdef SIGUSR2
- [SIGUSR2] = "USR2",
- #endif
- #ifdef SIGWINCH
- [SIGWINCH] = "WINCH",
- #endif
- #ifdef SIGSYS
- [SIGSYS] = "SYS",
- #endif
- #ifdef SIGTRAP
- [SIGTRAP] = "TRAP",
- #endif
- #ifdef SIGURG
- [SIGURG] = "URG",
- #endif
- #ifdef SIGVTALRM
- [SIGVTALRM] = "VTALRM",
- #endif
- #ifdef SIGXCPU
- [SIGXCPU] = "XCPU",
- #endif
- #ifdef SIGXFSZ
- [SIGXFSZ] = "XFSZ",
- #endif
- };