Lines Matching refs:old
28 struct sigaction *restrict old);
119 * @param[in] old, the old value of the sigset.
121 static int sigchain_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old)
125 ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8);
126 if (!ret && old) {
127 if (sizeof old->__bits[0] == 8) {
128 old->__bits[0] &= ~0x380000000ULL;
130 old->__bits[0] &= ~0x80000000UL;
131 old->__bits[1] &= ~0x3UL;
458 * @param[out] old, the old action with the signal handler.
462 struct sigaction *restrict old)
476 if (old != NULL) {
477 *old = saved_action;