Changeset 5c8ba05 in mainline for kernel/generic/src/ipc/ipc.c
- Timestamp:
- 2007-05-07T18:52:24Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6fa4888b
- Parents:
- 4f42d52
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r4f42d52 r5c8ba05 164 164 list_append(&call->link, &callerbox->answers); 165 165 spinlock_unlock(&callerbox->lock); 166 waitq_wakeup(&callerbox->wq, 0);166 waitq_wakeup(&callerbox->wq, WAKEUP_FIRST); 167 167 } 168 168 … … 206 206 list_append(&call->link, &box->calls); 207 207 spinlock_unlock(&box->lock); 208 waitq_wakeup(&box->wq, 0);208 waitq_wakeup(&box->wq, WAKEUP_FIRST); 209 209 } 210 210
Note:
See TracChangeset
for help on using the changeset viewer.