Changeset addbce4 in mainline for uspace/lib/c
- Timestamp:
- 2017-12-05T16:03:20Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 40fd6f0
- Parents:
- 9af1c61
- git-author:
- Jakub Jermar <jakub@…> (2017-12-05 11:59:18)
- git-committer:
- Jakub Jermar <jakub@…> (2017-12-05 16:03:20)
- Location:
- uspace/lib/c/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r9af1c61 raddbce4 1338 1338 1339 1339 /* Kernel notification */ 1340 if ((chandle == CAP_NIL) && (call->flags & IPC_CALL ID_NOTIFICATION)) {1340 if ((chandle == CAP_NIL) && (call->flags & IPC_CALL_NOTIF)) { 1341 1341 fibril_t *fibril = (fibril_t *) __tcb_get()->fibril_data; 1342 1342 unsigned oldsw = fibril->switches; … … 1497 1497 } 1498 1498 1499 if (call.flags & IPC_CALL ID_ANSWERED)1499 if (call.flags & IPC_CALL_ANSWERED) 1500 1500 continue; 1501 1501 -
uspace/lib/c/generic/ipc.c
r9af1c61 raddbce4 264 264 265 265 /* Handle received answers */ 266 if ((chandle == CAP_NIL) && (call->flags & IPC_CALL ID_ANSWERED))266 if ((chandle == CAP_NIL) && (call->flags & IPC_CALL_ANSWERED)) 267 267 handle_answer(call); 268 268 … … 295 295 do { 296 296 chandle = ipc_wait_cycle(call, usec, SYNCH_FLAGS_NONE); 297 } while ((chandle == CAP_NIL) && (call->flags & IPC_CALL ID_ANSWERED));297 } while ((chandle == CAP_NIL) && (call->flags & IPC_CALL_ANSWERED)); 298 298 299 299 return chandle; … … 317 317 chandle = ipc_wait_cycle(call, SYNCH_NO_TIMEOUT, 318 318 SYNCH_FLAGS_NON_BLOCKING); 319 } while ((chandle == CAP_NIL) && (call->flags & IPC_CALL ID_ANSWERED));319 } while ((chandle == CAP_NIL) && (call->flags & IPC_CALL_ANSWERED)); 320 320 321 321 return chandle;
Note:
See TracChangeset
for help on using the changeset viewer.