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