Changeset d054ad3 in mainline for uspace/lib/c/generic/async/server.c
- Timestamp:
- 2018-07-09T18:36:33Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d56e2e
- Parents:
- 87337dc5
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-05 16:39:15)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-09 18:36:33)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r87337dc5 rd054ad3 1088 1088 assert(call); 1089 1089 1090 if (call->flags & IPC_CALL_ANSWERED) 1090 if (call->flags & IPC_CALL_ANSWERED) { 1091 /* Answer to a call made by us. */ 1092 async_reply_received(call); 1091 1093 return; 1094 } 1092 1095 1093 1096 if (call->cap_handle == CAP_NIL) { … … 1195 1198 1196 1199 ipc_call_t call; 1197 errno_t rc = ipc_wait _cycle(&call, next_timeout, flags);1200 errno_t rc = ipc_wait(&call, next_timeout, flags); 1198 1201 1199 1202 atomic_dec(&threads_in_ipc_wait);
Note:
See TracChangeset
for help on using the changeset viewer.