SIG_BLOCK//将指定信号设置到阻塞信号集中mask=mask|set The set of blocked signals is the union of the current set and the set argument. SIG_UNBLOCK//将指定信号从阻塞信号集中清除mask=mask&~set The signals in set are removed from the current set of blocked signals. It is permissible to attempt to unblock a signal which is not blocked. SIG_SETMASK//相当于用自定义信号集替换阻塞信号集mask=set The set of blocked signals is set to the argument set.