Blame sysdeps/aix/siglist.c

Packit d37888
/* Copyright (C) 1998-99 Martin Baulig
Packit d37888
   This file is part of LibGTop 1.0.
Packit d37888
Packit d37888
   Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
Packit d37888
Packit d37888
   LibGTop is free software; you can redistribute it and/or modify it
Packit d37888
   under the terms of the GNU General Public License as published by
Packit d37888
   the Free Software Foundation; either version 2 of the License,
Packit d37888
   or (at your option) any later version.
Packit d37888
Packit d37888
   LibGTop is distributed in the hope that it will be useful, but WITHOUT
Packit d37888
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
Packit d37888
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit d37888
   for more details.
Packit d37888
Packit d37888
   You should have received a copy of the GNU General Public License
Packit d37888
   along with LibGTop; see the file COPYING. If not, write to the
Packit d37888
   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit d37888
   Boston, MA 02110-1301, USA.
Packit d37888
*/
Packit d37888
Packit d37888
#include <config.h>
Packit d37888
#include <glibtop.h>
Packit d37888
#include <glibtop/signal.h>
Packit d37888
Packit d37888
const glibtop_signame glibtop_sys_siglist [] =
Packit d37888
{  {  1, "SIGHUP",  "Hangup" },
Packit d37888
   {  2, "SIGINT",  "Interrupt" },
Packit d37888
   {  3, "SIGQUIT", "Quit" },
Packit d37888
   {  4, "SIGILL",  "Illegal Instruction" },
Packit d37888
   {  5, "SIGTRAP", "Trace/Breakpoint Trap" },
Packit d37888
   {  6, "SIGABRT", "Abort" },
Packit d37888
   {  7, "SIGEMT",  "Emulation Trap" },
Packit d37888
   {  8, "SIGFPE",  "Arithmetic Exception" },
Packit d37888
   {  9, "SIGKILL", "Killed" },
Packit d37888
   { 10, "SIGBUS",  "Bus Error" },
Packit d37888
   { 11, "SIGSEGV", "Segmentation Fault" },
Packit d37888
   { 12, "SIGSYS",  "Bad System Call" },
Packit d37888
   { 13, "SIGPIPE", "Broken Pipe" },
Packit d37888
   { 14, "SIGALRM", "Alarm Clock" },
Packit d37888
   { 15, "SIGTERM", "Terminated" },
Packit d37888
   { 16, "SIGURG",  "Urgent Socket Condition" },
Packit d37888
   { 17, "SIGSTOP", "Stop (signal)" },
Packit d37888
   { 18, "SIGSTP",  "Stop (user)" },
Packit d37888
   { 19, "SIGCONT", "Continue" },
Packit d37888
   { 20, "SIGCHLD", "Child Status Changed" },
Packit d37888
   { 21, "SIGTTIN", "Stopped (tty input)" },
Packit d37888
   { 22, "SIGTTOU", "Stopped (tty output)" },
Packit d37888
   { 23, "SIGIO",   "I/O completed" },
Packit d37888
   { 24, "SIGXCPU", "Cpu Limit Exceeded" },
Packit d37888
   { 25, "SIGXFSZ", "File Size Limit Exceeded" },
Packit d37888
   { 27, "SIGMSG",  "Message" },
Packit d37888
   { 28, "SIGWINCH","Window Size Change" },
Packit d37888
   { 29, "SIGPWR",  "Power-Fail/Restart" },
Packit d37888
   { 30, "SIGUSR1", "User Signal 1" },
Packit d37888
   { 31, "SIGUSR2", "User Signal 2" },
Packit d37888
   { 32, "SIGPROF", "Profiling Timer Expired" },
Packit d37888
   { 33, "SIGDANGER","System Crash Imminent" },
Packit d37888
   { 34, "SIGVTALRM","Virtual Timer Expired" },
Packit d37888
   { 35, "SIGMIGRATE","Migrate Process" },
Packit d37888
   { 36, "SIGPRE",   "Programming Exception" },
Packit d37888
   { 37, "SIGVIRT",  "AIX Virtual Time Alarm" },
Packit d37888
   { 38, "SIGALRM1", "m:n Condition Variables" },
Packit d37888
   { 39, "SIGWAITING","Scheduling" },
Packit d37888
   { 59, "SIGCPUFAIL","Predictive De-configuration of Processors" },
Packit d37888
   { 60, "SIGKAP",   "Keep Alive" },
Packit d37888
   { 61, "SIGRETRACT","Monitor Mode Relinguish" },
Packit d37888
   { 62, "SIGSOUND", "Sound Control Completed" },
Packit d37888
   { 63, "SIGSAK",   "Secure Attention Key" },
Packit d37888
   {  0, NULL, NULL }
Packit d37888
};