Changes in kernel/generic/src/ddi/irq.c [a35b458:30f1a25] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ddi/irq.c
ra35b458 r30f1a25 141 141 { 142 142 irq_spinlock_lock(l, false); 143 for (ht_link_t *lnk = hash_table_find(h, &inr); lnk; 144 lnk = hash_table_find_next(h, lnk)) { 143 ht_link_t *first = hash_table_find(h, &inr); 144 for (ht_link_t *lnk = first; lnk; 145 lnk = hash_table_find_next(h, first, lnk)) { 145 146 irq_t *irq = hash_table_get_inst(lnk, irq_t, link); 146 147 irq_spinlock_lock(&irq->lock, false);
Note:
See TracChangeset
for help on using the changeset viewer.