函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\linux\signal.h Create Date:2022-07-27 06:41:09
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:sigandnsets

函数原型:static inline void sigandnsets(sigset_t *r, const sigset_t *a, const sigset_t *b)

返回类型:void

参数:

类型参数名称
sigset_t *r
const sigset_t *a
const sigset_t *b
153  : / == 4
153  a3等于信号[3]
153  a2等于信号[2]
153  b3等于信号[3]
153  b2等于信号[2]
153  信号[3]等于a3按位与b3的反
153  信号[2]等于a2按位与b2的反
153  : / == 2
153  a1等于信号[1]
153  b1等于信号[1]
153  信号[1]等于a1按位与b1的反
153  : / == 1
153  a0等于信号[0]
153  b0等于信号[0]
153  信号[0]等于a0按位与b0的反
153  退出
153  默认
153  循环
153  当0循环
调用者
名称描述
flush_sigqueue_maskRemove signals in mask from the pending set and queue.* Returns 1 if any signals were found.* All callers must be holding the siglock.
__set_task_blocked
sigprocmaskThis is also useful for kernel threads that want to temporarily* (or permanently) block certain signals.* NOTE! Unlike the user-mode sys_sigprocmask(), the kernel* interface happily blocks "unblockable" signals like SIGKILL* and friends.