Fixed compilation on mips. Closes #304570.
* siglist.c: Fixed compilation on mips. Closes #304570.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2005-05-26 Benoît Dejean <TazForEver@dlfp.org>
|
||||||
|
|
||||||
|
* siglist.c: Fixed compilation on mips. Closes #304570.
|
||||||
|
|
||||||
2005-04-01 Benoît Dejean <TazForEver@dlfp.org>
|
2005-04-01 Benoît Dejean <TazForEver@dlfp.org>
|
||||||
|
|
||||||
* glibtop_private.h: Fixed gcc-4.0 warnings.
|
* glibtop_private.h: Fixed gcc-4.0 warnings.
|
||||||
|
@@ -35,40 +35,110 @@ perl -nle 'print "{$1,\t\"$1\",\t\"$2\"}," if m|^#define\s*(SIG[A-Z0-9]+).*?/\*\
|
|||||||
|
|
||||||
const glibtop_signame glibtop_sys_siglist [] =
|
const glibtop_signame glibtop_sys_siglist [] =
|
||||||
{
|
{
|
||||||
|
#ifdef SIGHUP
|
||||||
{SIGHUP, "SIGHUP", "Hangup (POSIX)."},
|
{SIGHUP, "SIGHUP", "Hangup (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGINT
|
||||||
{SIGINT, "SIGINT", "Interrupt (ANSI)."},
|
{SIGINT, "SIGINT", "Interrupt (ANSI)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGQUIT
|
||||||
{SIGQUIT, "SIGQUIT", "Quit (POSIX)."},
|
{SIGQUIT, "SIGQUIT", "Quit (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGILL
|
||||||
{SIGILL, "SIGILL", "Illegal instruction (ANSI)."},
|
{SIGILL, "SIGILL", "Illegal instruction (ANSI)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGTRAP
|
||||||
{SIGTRAP, "SIGTRAP", "Trace trap (POSIX)."},
|
{SIGTRAP, "SIGTRAP", "Trace trap (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGABRT
|
||||||
{SIGABRT, "SIGABRT", "Abort (ANSI)."},
|
{SIGABRT, "SIGABRT", "Abort (ANSI)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGIOT
|
||||||
{SIGIOT, "SIGIOT", "IOT trap (4.2 BSD)."},
|
{SIGIOT, "SIGIOT", "IOT trap (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGBUS
|
||||||
{SIGBUS, "SIGBUS", "BUS error (4.2 BSD)."},
|
{SIGBUS, "SIGBUS", "BUS error (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGFPE
|
||||||
{SIGFPE, "SIGFPE", "Floating-point exception (ANSI)."},
|
{SIGFPE, "SIGFPE", "Floating-point exception (ANSI)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGKILL
|
||||||
{SIGKILL, "SIGKILL", "Kill, unblockable (POSIX)."},
|
{SIGKILL, "SIGKILL", "Kill, unblockable (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGUSR1
|
||||||
{SIGUSR1, "SIGUSR1", "User-defined signal 1 (POSIX)."},
|
{SIGUSR1, "SIGUSR1", "User-defined signal 1 (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGSEGV
|
||||||
{SIGSEGV, "SIGSEGV", "Segmentation violation (ANSI)."},
|
{SIGSEGV, "SIGSEGV", "Segmentation violation (ANSI)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGUSR2
|
||||||
{SIGUSR2, "SIGUSR2", "User-defined signal 2 (POSIX)."},
|
{SIGUSR2, "SIGUSR2", "User-defined signal 2 (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGPIPE
|
||||||
{SIGPIPE, "SIGPIPE", "Broken pipe (POSIX)."},
|
{SIGPIPE, "SIGPIPE", "Broken pipe (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGALRM
|
||||||
{SIGALRM, "SIGALRM", "Alarm clock (POSIX)."},
|
{SIGALRM, "SIGALRM", "Alarm clock (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGTERM
|
||||||
{SIGTERM, "SIGTERM", "Termination (ANSI)."},
|
{SIGTERM, "SIGTERM", "Termination (ANSI)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGSTKFLT
|
||||||
{SIGSTKFLT, "SIGSTKFLT", "Stack fault."},
|
{SIGSTKFLT, "SIGSTKFLT", "Stack fault."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGCLD
|
||||||
{SIGCLD, "SIGCLD", "Same as SIGCHLD (System V)."},
|
{SIGCLD, "SIGCLD", "Same as SIGCHLD (System V)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGCHLD
|
||||||
{SIGCHLD, "SIGCHLD", "Child status has changed (POSIX)."},
|
{SIGCHLD, "SIGCHLD", "Child status has changed (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGCONT
|
||||||
{SIGCONT, "SIGCONT", "Continue (POSIX)."},
|
{SIGCONT, "SIGCONT", "Continue (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGSTOP
|
||||||
{SIGSTOP, "SIGSTOP", "Stop, unblockable (POSIX)."},
|
{SIGSTOP, "SIGSTOP", "Stop, unblockable (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGTSTP
|
||||||
{SIGTSTP, "SIGTSTP", "Keyboard stop (POSIX)."},
|
{SIGTSTP, "SIGTSTP", "Keyboard stop (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGTTIN
|
||||||
{SIGTTIN, "SIGTTIN", "Background read from tty (POSIX)."},
|
{SIGTTIN, "SIGTTIN", "Background read from tty (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGTTOU
|
||||||
{SIGTTOU, "SIGTTOU", "Background write to tty (POSIX)."},
|
{SIGTTOU, "SIGTTOU", "Background write to tty (POSIX)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGURG
|
||||||
{SIGURG, "SIGURG", "Urgent condition on socket (4.2 BSD)."},
|
{SIGURG, "SIGURG", "Urgent condition on socket (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGXCPU
|
||||||
{SIGXCPU, "SIGXCPU", "CPU limit exceeded (4.2 BSD)."},
|
{SIGXCPU, "SIGXCPU", "CPU limit exceeded (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGXFSZ
|
||||||
{SIGXFSZ, "SIGXFSZ", "File size limit exceeded (4.2 BSD)."},
|
{SIGXFSZ, "SIGXFSZ", "File size limit exceeded (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGVTALRM
|
||||||
{SIGVTALRM, "SIGVTALRM", "Virtual alarm clock (4.2 BSD)."},
|
{SIGVTALRM, "SIGVTALRM", "Virtual alarm clock (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGPROF
|
||||||
{SIGPROF, "SIGPROF", "Profiling alarm clock (4.2 BSD)."},
|
{SIGPROF, "SIGPROF", "Profiling alarm clock (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGWINCH
|
||||||
{SIGWINCH, "SIGWINCH", "Window size change (4.3 BSD, Sun)."},
|
{SIGWINCH, "SIGWINCH", "Window size change (4.3 BSD, Sun)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGPOLL
|
||||||
{SIGPOLL, "SIGPOLL", "Pollable event occurred (System V)."},
|
{SIGPOLL, "SIGPOLL", "Pollable event occurred (System V)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGIO
|
||||||
{SIGIO, "SIGIO", "I/O now possible (4.2 BSD)."},
|
{SIGIO, "SIGIO", "I/O now possible (4.2 BSD)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGPWR
|
||||||
{SIGPWR, "SIGPWR", "Power failure restart (System V)."},
|
{SIGPWR, "SIGPWR", "Power failure restart (System V)."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGSYS
|
||||||
{SIGSYS, "SIGSYS", "Bad system call."},
|
{SIGSYS, "SIGSYS", "Bad system call."},
|
||||||
|
#endif
|
||||||
|
#ifdef SIGUNUSED
|
||||||
{SIGUNUSED, "SIGUNUSED", ""},
|
{SIGUNUSED, "SIGUNUSED", ""},
|
||||||
|
#endif
|
||||||
{0, NULL, NULL}
|
{0, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user