Changeset 3be9d10 in mainline for uspace/srv/fs/locfs/locfs_ops.c


Ignore:
Timestamp:
2018-03-21T21:29:31Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3e242d2
Parents:
eadaeae8
Message:

Get rid of ipc_callid_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/locfs/locfs_ops.c

    readaeae8 r3be9d10  
    478478{
    479479        if (index == 0) {
    480                 ipc_callid_t callid;
     480                cap_call_handle_t callid;
    481481                size_t size;
    482482                if (!async_data_read_receive(&callid, &size)) {
     
    532532        if (type == LOC_OBJECT_NAMESPACE) {
    533533                /* Namespace directory */
    534                 ipc_callid_t callid;
     534                cap_call_handle_t callid;
    535535                size_t size;
    536536                if (!async_data_read_receive(&callid, &size)) {
     
    568568                assert(dev->sess);
    569569
    570                 ipc_callid_t callid;
     570                cap_call_handle_t callid;
    571571                if (!async_data_read_receive(&callid, NULL)) {
    572572                        fibril_mutex_unlock(&services_mutex);
     
    632632                assert(dev->sess);
    633633
    634                 ipc_callid_t callid;
     634                cap_call_handle_t callid;
    635635                if (!async_data_write_receive(&callid, NULL)) {
    636636                        fibril_mutex_unlock(&services_mutex);
Note: See TracChangeset for help on using the changeset viewer.