Changeset 4f13e19 in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2019-01-20T15:56:59Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8cb48d
- Parents:
- eefdd7c
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-01-20 15:56:59)
- git-committer:
- GitHub <noreply@…> (2019-01-20 15:56:59)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
reefdd7c r4f13e19 136 136 137 137 async_exch_t *exch = async_exchange_begin(driver->sess); 138 async_forward_ fast(icall, exch, INTERFACE_DDF_CLIENT, handle, 0, IPC_FF_NONE);138 async_forward_1(icall, exch, INTERFACE_DDF_CLIENT, handle, IPC_FF_NONE); 139 139 async_exchange_end(exch); 140 140 … … 215 215 216 216 async_exch_t *exch = async_exchange_begin(driver->sess); 217 async_forward_ fast(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, 0, IPC_FF_NONE);217 async_forward_1(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, IPC_FF_NONE); 218 218 async_exchange_end(exch); 219 219 … … 250 250 251 251 async_exch_t *exch = async_exchange_begin(driver->sess); 252 async_forward_ fast(icall, exch, iface, handle, 0, IPC_FF_NONE);252 async_forward_1(icall, exch, iface, handle, IPC_FF_NONE); 253 253 async_exchange_end(exch); 254 254
Note:
See TracChangeset
for help on using the changeset viewer.