Changeset f8838b8 in mainline for uspace/lib/c/generic/vfs/vfs.c


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

flag, instance, and fs_handle fields can be sent together in a single IPC message

File:
1 edited

Legend:

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

    rf346039 rf8838b8  
    875875                sysarg_t p[3];
    876876
    877                 int j;
    878                 for (j = 0; j < 3; ++j) {
    879                         rc = async_req_0_1(exch, VFS_IN_PING, &p[j]);
    880                         if (rc != EOK)
    881                                 goto exit;
    882                 }
     877                rc = async_req_0_3(exch, VFS_IN_PING, &p[0], &p[1], &p[2]);
     878                if (rc != EOK)
     879                        goto exit;
    883880
    884881                mtab_ent->flags = p[0];
Note: See TracChangeset for help on using the changeset viewer.