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