标准库头文件 <signal.h>
来自 cppreference.cn
此头文件是程序支持库的一部分。
类型 | ||
可以从异步信号处理程序作为原子实体访问的整数类型 (类型定义) | ||
宏 | ||
定义信号类型 (宏常量) | ||
定义信号处理策略 (宏常量) | ||
遇到错误 (宏常量) | ||
函数 | ||
为特定信号设置信号处理程序 (函数) | ||
为特定信号运行信号处理程序 (函数) |
[编辑] 概要
typedef sig_atomic_t /* see description */; void (*signal(int sig, void (*func)(int)))(int); int raise(int sig); #define SIG_DFL /* see description */ #define SIG_ERR /* see description */ #define SIG_IGN /* see description */ #define SIGABRT /* see description */ #define SIGFPE /* see description */ #define SIGILL /* see description */ #define SIGINT /* see description */ #define SIGSEGV /* see description */ #define SIGTERM /* see description */