Changeset 3be9d10 in mainline for uspace/lib/c/generic/bd_srv.c
- Timestamp:
- 2018-03-21T21:29:31Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e242d2
- Parents:
- eadaeae8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/bd_srv.c
readaeae8 r3be9d10 43 43 #include <bd_srv.h> 44 44 45 static void bd_read_blocks_srv(bd_srv_t *srv, ipc_callid_t callid,45 static void bd_read_blocks_srv(bd_srv_t *srv, cap_call_handle_t callid, 46 46 ipc_call_t *call) 47 47 { … … 51 51 size_t size; 52 52 errno_t rc; 53 ipc_callid_t rcallid;53 cap_call_handle_t rcallid; 54 54 55 55 ba = MERGE_LOUP32(IPC_GET_ARG1(*call), IPC_GET_ARG2(*call)); … … 89 89 } 90 90 91 static void bd_read_toc_srv(bd_srv_t *srv, ipc_callid_t callid,91 static void bd_read_toc_srv(bd_srv_t *srv, cap_call_handle_t callid, 92 92 ipc_call_t *call) 93 93 { … … 96 96 size_t size; 97 97 errno_t rc; 98 ipc_callid_t rcallid;98 cap_call_handle_t rcallid; 99 99 100 100 session = IPC_GET_ARG1(*call); … … 133 133 } 134 134 135 static void bd_sync_cache_srv(bd_srv_t *srv, ipc_callid_t callid,135 static void bd_sync_cache_srv(bd_srv_t *srv, cap_call_handle_t callid, 136 136 ipc_call_t *call) 137 137 { … … 152 152 } 153 153 154 static void bd_write_blocks_srv(bd_srv_t *srv, ipc_callid_t callid,154 static void bd_write_blocks_srv(bd_srv_t *srv, cap_call_handle_t callid, 155 155 ipc_call_t *call) 156 156 { … … 180 180 } 181 181 182 static void bd_get_block_size_srv(bd_srv_t *srv, ipc_callid_t callid,182 static void bd_get_block_size_srv(bd_srv_t *srv, cap_call_handle_t callid, 183 183 ipc_call_t *call) 184 184 { … … 195 195 } 196 196 197 static void bd_get_num_blocks_srv(bd_srv_t *srv, ipc_callid_t callid,197 static void bd_get_num_blocks_srv(bd_srv_t *srv, cap_call_handle_t callid, 198 198 ipc_call_t *call) 199 199 { … … 228 228 } 229 229 230 errno_t bd_conn( ipc_callid_t iid, ipc_call_t *icall, bd_srvs_t *srvs)230 errno_t bd_conn(cap_call_handle_t iid, ipc_call_t *icall, bd_srvs_t *srvs) 231 231 { 232 232 bd_srv_t *srv; … … 252 252 while (true) { 253 253 ipc_call_t call; 254 ipc_callid_t callid = async_get_call(&call);254 cap_call_handle_t callid = async_get_call(&call); 255 255 sysarg_t method = IPC_GET_IMETHOD(call); 256 256
Note:
See TracChangeset
for help on using the changeset viewer.