Changeset 36d852c in mainline for uspace/srv/vfs/vfs_open.c


Ignore:
Timestamp:
2007-12-23T19:45:30Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
654b7db
Parents:
5c786d1
Message:

Rename IPC_M_DATA_SEND to IPC_M_DATA_WRITE. Now, when we also add
IPC_M_DATA_READ, it will not clash and cause confusion with userspace wrappers
such as ipc_data_receive(). Rename the forementioned wrappers to
ipc_data_write_send(), ipc_data_write_receive() and ipc_data_write_deliver().

File:
1 edited

Legend:

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

    r5c786d1 r36d852c  
    6262        ipc_callid_t callid;
    6363
    64         if (!ipc_data_receive(&callid, NULL, &size)) {
     64        if (!ipc_data_write_receive(&callid, NULL, &size)) {
    6565                ipc_answer_0(callid, EINVAL);
    6666                ipc_answer_0(rid, EINVAL);
     
    8383
    8484        int rc;
    85         if ((rc = ipc_data_deliver(callid, path, size))) {
     85        if ((rc = ipc_data_write_deliver(callid, path, size))) {
    8686                ipc_answer_0(rid, rc);
    8787                free(path);
Note: See TracChangeset for help on using the changeset viewer.