📄 siglist.c
字号:
#if !defined(lint) && defined(SCCSIDS)static char sccsid[] = "@(#)siglist.c 1.1 92/07/30 SMI"; /* from UCB 5.1 85/30/05 */#endif/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */#include <signal.h>char *sys_siglist[NSIG] = { "Signal 0", "Hangup", /* SIGHUP */ "Interrupt", /* SIGINT */ "Quit", /* SIGQUIT */ "Illegal instruction", /* SIGILL */ "Trace/BPT trap", /* SIGTRAP */ "Abort", /* SIGABRT */ "Emulator trap", /* SIGEMT */ "Arithmetic exception", /* SIGFPE */ "Killed", /* SIGKILL */ "Bus error", /* SIGBUS */ "Segmentation fault", /* SIGSEGV */ "Bad system call", /* SIGSYS */ "Broken pipe", /* SIGPIPE */ "Alarm clock", /* SIGALRM */ "Terminated", /* SIGTERM */ "Urgent I/O condition", /* SIGURG */ "Stopped (signal)", /* SIGSTOP */ "Stopped", /* SIGTSTP */ "Continued", /* SIGCONT */ "Child exited", /* SIGCHLD */ "Stopped (tty input)", /* SIGTTIN */ "Stopped (tty output)", /* SIGTTOU */ "I/O possible", /* SIGIO */ "Cputime limit exceeded", /* SIGXCPU */ "Filesize limit exceeded", /* SIGXFSZ */ "Virtual timer expired", /* SIGVTALRM */ "Profiling timer expired", /* SIGPROF */ "Window changed", /* SIGWINCH */ "Resource lost", /* SIGLOST */ "User defined signal 1", /* SIGUSR1 */ "User defined signal 2" /* SIGUSR2 */};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -