Changes in kernel/generic/src/ipc/irq.c [55b77d9:45e0e07] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/irq.c
r55b77d9 r45e0e07 200 200 201 201 hash_table_insert(&irq_uspace_hash_table, key, &irq->link); 202 list_append(&irq->notif_cfg.link, &box->irq_ list);202 list_append(&irq->notif_cfg.link, &box->irq_head); 203 203 204 204 irq_spinlock_unlock(&box->irq_lock, false); … … 282 282 irq_spinlock_lock(&box->irq_lock, false); 283 283 284 while ( !list_empty(&box->irq_list)) {284 while (box->irq_head.next != &box->irq_head) { 285 285 DEADLOCK_PROBE_INIT(p_irqlock); 286 286 287 irq_t *irq = list_get_instance( list_first(&box->irq_list), irq_t,287 irq_t *irq = list_get_instance(box->irq_head.next, irq_t, 288 288 notif_cfg.link); 289 289
Note:
See TracChangeset
for help on using the changeset viewer.