Changeset eed4139 in mainline for uspace/srv
- Timestamp:
- 2018-03-22T23:23:18Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cbb37b6
- Parents:
- 77f0a1d
- Location:
- uspace/srv
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/audio_device.c
r77f0a1d reed4139 255 255 } 256 256 257 /** 258 * Audio device event handler. 259 * @param iid initial call id. 260 * @param icall initial call structure. 261 * @param arg (unused) 262 */ 263 static void device_event_callback(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg) 257 /** Audio device event handler. 258 * 259 * @param icall_handle Initial call handle. 260 * @param icall Initial call structure. 261 * @param arg (unused) 262 */ 263 static void device_event_callback(cap_call_handle_t icall_handle, 264 ipc_call_t *icall, void *arg) 264 265 { 265 266 struct timeval time1; -
uspace/srv/net/udp/service.c
r77f0a1d reed4139 670 670 /** Handle UDP client connection. 671 671 * 672 * @param iid Connect call ID 673 * @param icall Connect call data 674 * @param arg Connection argument 675 */ 676 static void udp_client_conn(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg) 672 * @param icall_handle Connect call handle 673 * @param icall Connect call data 674 * @param arg Connection argument 675 */ 676 static void udp_client_conn(cap_call_handle_t icall_handle, ipc_call_t *icall, 677 void *arg) 677 678 { 678 679 udp_client_t client; -
uspace/srv/ns/clonable.c
r77f0a1d reed4139 108 108 /** Connect client to clonable service. 109 109 * 110 * @param service Service to be connected to.111 * @param iface Interface to be connected to.112 * @param call Pointer to call structure.113 * @param chandle Call IDof the request.110 * @param service Service to be connected to. 111 * @param iface Interface to be connected to. 112 * @param call Pointer to call structure. 113 * @param chandle Call handle of the request. 114 114 * 115 115 * @return Zero on success or a value from @ref errno.h. -
uspace/srv/ns/service.c
r77f0a1d reed4139 160 160 /** Connect client to service. 161 161 * 162 * @param service Service to be connected to.163 * @param iface Interface to be connected to.164 * @param call Pointer to call structure.165 * @param chandle Call IDof the request.162 * @param service Service to be connected to. 163 * @param iface Interface to be connected to. 164 * @param call Pointer to call structure. 165 * @param chandle Call handle of the request. 166 166 * 167 167 * @return Zero on success or a value from @ref errno.h. -
uspace/srv/ns/task.c
r77f0a1d reed4139 145 145 typedef struct { 146 146 link_t link; 147 task_id_t id; /**< Task ID. */148 cap_call_handle_t chandle; / **< Call ID waiting for the connection */147 task_id_t id; ///< Task ID 148 cap_call_handle_t chandle; ///< Call handle waiting for the connection 149 149 } pending_wait_t; 150 150
Note:
See TracChangeset
for help on using the changeset viewer.