Changeset eda925a in mainline for uspace/srv/vfs/vfs_register.c


Ignore:
Timestamp:
2010-02-04T15:46:51Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d32358f
Parents:
b4cbef1
Message:

improve naming conventions:
merge async_data_receive() and async_string_receive() into async_data_write_accept()
rename async_data_void() to async_data_write_void()
rename async_data_forward_fast() to async_data_write_forward_fast()
rename async_data_forward_n_m to async_data_write_forward_n_m

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_register.c

    rb4cbef1 reda925a  
    114114       
    115115        vfs_info_t *vfs_info;
    116         int rc = async_data_receive(&vfs_info, sizeof(vfs_info_t),
    117             sizeof(vfs_info_t), 0, NULL);
     116        int rc = async_data_write_accept((void **) &vfs_info, false,
     117            sizeof(vfs_info_t), sizeof(vfs_info_t), 0, NULL);
    118118       
    119119        if (rc != EOK) {
Note: See TracChangeset for help on using the changeset viewer.