Lines Matching defs:set
64 /* Signal chain set, from 0 to 63. */
96 * @retval bool, true if set the value of the key,or false.
118 * @param[in] set, the new value of the sigset.
121 static int sigchain_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old)
124 if (set && (unsigned)how - SIG_BLOCK > 2U) return EINVAL;
125 ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8);
488 * @param[out] set, the value of the sigset.
491 void intercept_pthread_sigmask(int how, sigset_t *restrict set)
500 if (set != NULL) {
501 tmpset = *set;
509 *set = tmpset;