Lines Matching full:pending
155 unsigned long pending = 1UL << sig; in hard_handler() local
161 * pending comes back with one bit set for each in hard_handler()
170 bail = to_irq_stack(&pending); in hard_handler()
174 nested = pending & 1; in hard_handler()
175 pending &= ~1; in hard_handler()
177 while ((sig = ffs(pending)) != 0){ in hard_handler()
179 pending &= ~(1 << sig); in hard_handler()
184 * Again, pending comes back with a mask of signals in hard_handler()
190 pending = from_irq_stack(nested); in hard_handler()
191 } while (pending); in hard_handler()
280 * We have pending interrupts, so disable signals, as the in unblock_signals()
285 * pending signals will mess up the tracing state. in unblock_signals()
292 * schedule, leaving the pending SIGIO stranded until we come in unblock_signals()
306 /* Rerun the loop only if there is still pending SIGIO and not in TIMER handler */ in unblock_signals()