Changes in uspace/srv/ns/service.c [96b02eb9:c638c07] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/service.c
r96b02eb9 rc638c07 43 43 typedef struct { 44 44 link_t link; 45 sysarg_t service; /**< Number of the service. */46 sysarg_t phone; /**< Phone registered with the service. */47 sysarg_t in_phone_hash; /**< Incoming phone hash. */45 ipcarg_t service; /**< Number of the service. */ 46 ipcarg_t phone; /**< Phone registered with the service. */ 47 ipcarg_t in_phone_hash; /**< Incoming phone hash. */ 48 48 } hashed_service_t; 49 49 … … 115 115 typedef struct { 116 116 link_t link; 117 sysarg_t service; /**< Number of the service. */117 ipcarg_t service; /**< Number of the service. */ 118 118 ipc_callid_t callid; /**< Call ID waiting for the connection */ 119 sysarg_t arg2; /**< Second argument */120 sysarg_t arg3; /**< Third argument */119 ipcarg_t arg2; /**< Second argument */ 120 ipcarg_t arg3; /**< Third argument */ 121 121 } pending_conn_t; 122 122 … … 174 174 * 175 175 */ 176 int register_service( sysarg_t service, sysarg_t phone, ipc_call_t *call)176 int register_service(ipcarg_t service, ipcarg_t phone, ipc_call_t *call) 177 177 { 178 178 unsigned long keys[3] = { … … 207 207 * 208 208 */ 209 void connect_to_service( sysarg_t service, ipc_call_t *call, ipc_callid_t callid)210 { 211 sysarg_t retval;209 void connect_to_service(ipcarg_t service, ipc_call_t *call, ipc_callid_t callid) 210 { 211 ipcarg_t retval; 212 212 unsigned long keys[3] = { 213 213 service,
Note:
See TracChangeset
for help on using the changeset viewer.