Changeset 102f641 in mainline for uspace/lib/c/generic/async/client.c


Ignore:
Timestamp:
2019-09-02T19:01:50Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
25697163
Parents:
241f1985
Message:

Correcting syntax according to ccheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/async/client.c

    r241f1985 r102f641  
    164164static FIBRIL_CONDVAR_INITIALIZE(avail_phone_cv);
    165165
    166 
    167166/** Create session for existing phone
    168167 *
    169168 * @return session on success, NULL on error
    170169 */
    171  
     170
    172171async_sess_t *create_session(cap_phone_handle_t phone, exch_mgmt_t mgmt,
    173172    sysarg_t arg1, sysarg_t arg2, sysarg_t arg3)
     
    181180                session->arg2 = arg2;
    182181                session->arg3 = arg3;
    183                
     182
    184183                fibril_mutex_initialize(&session->remote_state_mtx);
    185184                session->remote_state_data = NULL;
    186                
     185
    187186                list_initialize(&session->exch_list);
    188187                fibril_mutex_initialize(&session->mutex);
Note: See TracChangeset for help on using the changeset viewer.