Changeset 984a9ba in mainline for uspace/lib/c/generic/async/ports.c
- Timestamp:
- 2018-07-05T09:34:09Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63d46341
- Parents:
- 76f566d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/ports.c
r76f566d r984a9ba 85 85 * not have a specific handler defined. 86 86 * 87 * @param chandle Handle of the incoming call. 88 * @param call Data of the incoming call. 89 * @param arg Local argument 87 * @param call Data of the incoming call. 88 * @param arg Local argument 90 89 * 91 90 */ 92 static void default_fallback_port_handler(cap_call_handle_t chandle, 93 ipc_call_t *call, void *arg) 94 { 95 ipc_answer_0(chandle, ENOENT); 91 static void default_fallback_port_handler(ipc_call_t *call, void *arg) 92 { 93 async_answer_0(call, ENOENT); 96 94 } 97 95
Note:
See TracChangeset
for help on using the changeset viewer.