Lines Matching refs:ss
32 struct hurd_sigstate *ss; in __pthread_sigstate() local
39 ss = _hurd_thread_sigstate (thread->kernel_thread); in __pthread_sigstate()
40 assert (ss); in __pthread_sigstate()
42 _hurd_sigstate_lock (ss); in __pthread_sigstate()
44 old = ss->blocked; in __pthread_sigstate()
51 ss->blocked |= new; in __pthread_sigstate()
55 ss->blocked = new; in __pthread_sigstate()
59 ss->blocked &= ~new; in __pthread_sigstate()
66 ss->blocked &= ~_SIG_CANT_MASK; in __pthread_sigstate()
70 __sigemptyset (&ss->pending); in __pthread_sigstate()
72 pending = _hurd_sigstate_pending (ss) & ~ss->blocked; in __pthread_sigstate()
73 _hurd_sigstate_unlock (ss); in __pthread_sigstate()