Lines Matching refs:ss
30 struct hurd_sigstate *ss; in __sigwait() local
41 struct hurd_sigstate *ss, in __sigwait()
55 ss->blocked = blocked; in __sigwait()
75 ss = _hurd_self_sigstate (); in __sigwait()
77 _hurd_sigstate_lock (ss); in __sigwait()
80 sigset_t pending = _hurd_sigstate_pending (ss); in __sigwait()
106 preemptor.next = ss->preemptors; in __sigwait()
107 ss->preemptors = &preemptor; in __sigwait()
110 blocked = ss->blocked; in __sigwait()
111 ss->blocked &= ~mask; in __sigwait()
113 _hurd_sigstate_unlock (ss); in __sigwait()
124 _hurd_sigstate_lock (ss); in __sigwait()
127 assert (ss->preemptors == &preemptor); in __sigwait()
128 ss->preemptors = preemptor.next; in __sigwait()
133 _hurd_sigstate_unlock (ss); in __sigwait()