Changeset ea28272 in mainline for uspace/srv/ns/service.c
- Timestamp:
- 2010-12-30T13:43:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d770deb
- Parents:
- d70d80ed (diff), f418e51 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/service.c
rd70d80ed rea28272 43 43 typedef struct { 44 44 link_t link; 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. */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. */ 48 48 } hashed_service_t; 49 49 … … 115 115 typedef struct { 116 116 link_t link; 117 ipcarg_t service; /**< Number of the service. */117 sysarg_t service; /**< Number of the service. */ 118 118 ipc_callid_t callid; /**< Call ID waiting for the connection */ 119 ipcarg_t arg2; /**< Second argument */120 ipcarg_t arg3; /**< Third argument */119 sysarg_t arg2; /**< Second argument */ 120 sysarg_t arg3; /**< Third argument */ 121 121 } pending_conn_t; 122 122 … … 174 174 * 175 175 */ 176 int register_service( ipcarg_t service, ipcarg_t phone, ipc_call_t *call)176 int register_service(sysarg_t service, sysarg_t phone, ipc_call_t *call) 177 177 { 178 178 unsigned long keys[3] = { … … 207 207 * 208 208 */ 209 void connect_to_service( ipcarg_t service, ipc_call_t *call, ipc_callid_t callid)210 { 211 ipcarg_t retval;209 void connect_to_service(sysarg_t service, ipc_call_t *call, ipc_callid_t callid) 210 { 211 sysarg_t retval; 212 212 unsigned long keys[3] = { 213 213 service,
Note:
See TracChangeset
for help on using the changeset viewer.