linux 信号表

#endif /* __ASSEMBLY__ */

#define SIGHUP      1

#define SIGINT      2

#define SIGQUIT      3

#define SIGILL      4

#define SIGTRAP      5

#define SIGABRT      6

#define SIGIOT      6

#define SIGBUS      7

#define SIGFPE      8

#define SIGKILL      9

#define SIGUSR1    10

#define SIGSEGV    11

#define SIGUSR2    12

#define SIGPIPE    13

#define SIGALRM    14

#define SIGTERM    15

#define SIGSTKFLT  16

#define SIGCHLD    17

#define SIGCONT    18

#define SIGSTOP    19

#define SIGTSTP    20

#define SIGTTIN    21

#define SIGTTOU    22

#define SIGURG      23

#define SIGXCPU    24

#define SIGXFSZ    25

#define SIGVTALRM  26

#define SIGPROF    27

#define SIGWINCH    28

#define SIGIO      29

#define SIGPOLL    SIGIO

/*

#define SIGLOST    29

*/

#define SIGPWR      30

#define SIGSYS      31

#define SIGUNUSED  31

/* These should not be considered constants from userland.  */

#define SIGRTMIN    32

#define SIGRTMAX    _NSIG

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 在以上列出的信号中,程序不可捕获、阻塞或忽略的信号有:SIGKILL,SIGSTOP不能恢复至默认动作的信号有:S...
    奥斯特洛司机阅读 2,600评论 0 0
  • 转自:http://www.dbafree.net/?p=870 我们可以使用kill -l查看所有的信号量解释,...
    AndreaArlex阅读 6,244评论 0 4
  • Linux信号列表 1) SIGHUP 本信号在用户终端连接(正常或非正常)结束时发出, 通常是在终端的控制进程结...
    一只肥豚鼠阅读 878评论 0 0
  • 首先先明确一下类似此类的错误"Application received signal 5",是linux系统级别的...
    半缘魔君阅读 4,911评论 0 8
  • 文章目录 一. 系统Crash 二. 处理signal 下面是一些信号说明 关键点注意 三. 实战 四. Cras...
    MTDeveloper阅读 1,171评论 1 2