Changeset 102f641 in mainline for uspace/lib/c/generic/async/client.c
- Timestamp:
- 2019-09-02T19:01:50Z (6 years ago)
- Children:
- 25697163
- Parents:
- 241f1985
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/client.c
r241f1985 r102f641 164 164 static FIBRIL_CONDVAR_INITIALIZE(avail_phone_cv); 165 165 166 167 166 /** Create session for existing phone 168 167 * 169 168 * @return session on success, NULL on error 170 169 */ 171 170 172 171 async_sess_t *create_session(cap_phone_handle_t phone, exch_mgmt_t mgmt, 173 172 sysarg_t arg1, sysarg_t arg2, sysarg_t arg3) … … 181 180 session->arg2 = arg2; 182 181 session->arg3 = arg3; 183 182 184 183 fibril_mutex_initialize(&session->remote_state_mtx); 185 184 session->remote_state_data = NULL; 186 185 187 186 list_initialize(&session->exch_list); 188 187 fibril_mutex_initialize(&session->mutex);
Note:
See TracChangeset
for help on using the changeset viewer.