Changeset 41e9ef7 in mainline


Ignore:
Timestamp:
2011-11-05T15:23:07Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c8a894d
Parents:
f8838b8
Message:

Rename VFS_IN_GET_MTAB —> VFS_IN_MTAB_GET

Location:
uspace
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/vfs/vfs.c

    rf8838b8 r41e9ef7  
    840840        async_exch_t *exch = vfs_exchange_begin();
    841841
    842         req = async_send_0(exch, VFS_IN_GET_MTAB, NULL);
     842        req = async_send_0(exch, VFS_IN_MTAB_GET, NULL);
    843843
    844844        /* Ask VFS how many filesystems are mounted */
  • uspace/lib/c/include/ipc/vfs.h

    rf8838b8 r41e9ef7  
    8181        VFS_IN_DUP,
    8282        VFS_IN_WAIT_HANDLE,
    83         VFS_IN_GET_MTAB,
     83        VFS_IN_MTAB_GET,
    8484} vfs_in_request_t;
    8585
  • uspace/srv/vfs/vfs.c

    rf8838b8 r41e9ef7  
    127127                        vfs_wait_handle(callid, &call);
    128128                        break;
    129                 case VFS_IN_GET_MTAB:
     129                case VFS_IN_MTAB_GET:
    130130                        vfs_get_mtab(callid, &call);
    131131                        break;
Note: See TracChangeset for help on using the changeset viewer.