/* * Copyright (c) 1995, 1996 Gunther Schadow. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* missing char *sys_siglist[] for HP-UX A.09.05 E 9000/730 * * Copyright (c) 1995 by, 1996 Gunther Schadow * * to be compiled with GCC. */ #include const char *sys_siglist[NSIG] = { [SIGHUP] /* 01 */ = "hangup", [SIGINT] /* 02 */ = "interrupt", [SIGQUIT] /* 03 */ = "quit", [SIGILL] /* 04 */ = "illegal instruction", [SIGTRAP] /* 05 */ = "trace trap", [SIGABRT] /* 06 */ = "software generated abort", [SIGEMT] /* 07 */ = "software generated signal", [SIGFPE] /* 08 */ = "floating point exception", [SIGKILL] /* 09 */ = "kill", [SIGBUS] /* 10 */ = "bus error", [SIGSEGV] /* 11 */ = "segmentation violation", [SIGSYS] /* 12 */ = "bad argument to system call", [SIGPIPE] /* 13 */ = "write on a pipe with no one to read it", [SIGALRM] /* 14 */ = "alarm clock", [SIGTERM] /* 15 */ = "software termination signal", [SIGUSR1] /* 16 */ = "user defined signal 1", [SIGUSR2] /* 17 */ = "user defined signal 2", [SIGCHLD] /* l8 */ = "death of a child", [SIGPWR] /* 19 */ = "power fail", [SIGVTALRM] /* 20 */ = "virtual timer alarm", [SIGPROF] /* 21 */ = "profiling timer alarm", [SIGIO] /* 22 */ = "asynchronous I/O signal", [SIGWINCH] /* 23 */ = "window size change", [SIGSTOP] /* 24 */ = "stop", [SIGTSTP] /* 25 */ = "stop signal generated from keyboard", [SIGCONT] /* 26 */ = "continue after stop", [SIGTTIN] /* 27 */ = "background read attempted from control terminal", [SIGTTOU] /* 28 */ = "background write attempted to control terminal", [SIGURG] /* 29 */ = "urgent data arrived on an I/O channel", [SIGLOST] /* 30 */ = "file lock lost", };