Lines Matching full:pending
167 unsigned long pending = 1UL << sig; in hard_handler() local
173 * pending comes back with one bit set for each in hard_handler()
182 bail = to_irq_stack(&pending); in hard_handler()
186 nested = pending & 1; in hard_handler()
187 pending &= ~1; in hard_handler()
189 while ((sig = ffs(pending)) != 0){ in hard_handler()
191 pending &= ~(1 << sig); in hard_handler()
196 * Again, pending comes back with a mask of signals in hard_handler()
202 pending = from_irq_stack(nested); in hard_handler()
203 } while (pending); in hard_handler()
292 * We have pending interrupts, so disable signals, as the in unblock_signals()
297 * pending signals will mess up the tracing state. in unblock_signals()
304 * schedule, leaving the pending SIGIO stranded until we come in unblock_signals()
318 /* Rerun the loop only if there is still pending SIGIO and not in TIMER handler */ in unblock_signals()