Changes in kernel/generic/src/ipc/ipc.c [96c30c8:7c3fb9b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r96c30c8 r7c3fb9b 550 550 errno_t rc; 551 551 552 restart: 552 553 rc = waitq_sleep_timeout(&box->wq, usec, flags, NULL); 553 554 if (rc != EOK) … … 589 590 list_append(&request->ab_link, &box->dispatched_calls); 590 591 } else { 591 /* 592 * This can happen regularly after ipc_cleanup, or in 593 * response to ipc_poke(). Let the caller sort out the wakeup. 594 */ 592 /* This can happen regularly after ipc_cleanup */ 595 593 irq_spinlock_unlock(&box->lock, true); 596 return NULL;594 goto restart; 597 595 } 598 596
Note:
See TracChangeset
for help on using the changeset viewer.