Changeset 215e375 in mainline for uspace/lib/libfs/libfs.c


Ignore:
Timestamp:
2007-12-31T17:23:20Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f57f8ea
Parents:
27d293a
Message:

The IPC_M_SHARE_* and IPC_M_DATA_* calls pass through 3 stages. Rename the send,
receive and deliver wrappers to names ending with 'start', 'receive' and
'finalize', respectively. This should make it clearer for dummies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libfs/libfs.c

    r27d293a r215e375  
    7272         * Send our VFS info structure to VFS.
    7373         */
    74         int rc = ipc_data_write_send(vfs_phone, info, sizeof(*info));
     74        int rc = ipc_data_write_start(vfs_phone, info, sizeof(*info));
    7575        if (rc != EOK) {
    7676                async_wait_for(req, NULL);
     
    9595         * Request sharing the Path Lookup Buffer with VFS.
    9696         */
    97         rc = ipc_share_in_send_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
     97        rc = ipc_share_in_start_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
    9898        if (rc) {
    9999                async_wait_for(req, NULL);
Note: See TracChangeset for help on using the changeset viewer.