Changeset 20614d0 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2007-11-03T14:59:41Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
828d215
Parents:
4d21cf8
Message:

Add ipc_answer_fast_[01] macros so that ipc_answer_fast() users don't have to
write zero arguments all the time.

File:
1 edited

Legend:

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

    r4d21cf8 r20614d0  
    6060         */
    6161        if (!vfs_conn_open_files_init()) {
    62                 ipc_answer_fast(iid, ENOMEM, 0, 0);
     62                ipc_answer_fast_0(iid, ENOMEM);
    6363                return;
    6464        }
     
    6868         * This call needs to be answered.
    6969         */
    70         ipc_answer_fast(iid, EOK, 0, 0);
     70        ipc_answer_fast_0(iid, EOK);
    7171
    7272        /*
     
    105105                case VFS_SEEK:
    106106                default:
    107                         ipc_answer_fast(callid, ENOTSUP, 0, 0);
     107                        ipc_answer_fast_0(callid, ENOTSUP);
    108108                        break;
    109109                }
Note: See TracChangeset for help on using the changeset viewer.