Changeset b74959bd in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2007-11-20T21:33:32Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8498915
Parents:
3209923
Message:

Modify ipc_answer_*() to make use of all six syscall arguments. The recommended
means of answering calls is via the ipc_answer_m() macros (where m denotes the
number of return arguments) that automatically decide between the fast register
version or the slow universal version of ipc_answer().

File:
1 edited

Legend:

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

    r3209923 rb74959bd  
    6060         * This call needs to be answered.
    6161         */
    62         ipc_answer_fast_0(iid, EOK);
     62        ipc_answer_0(iid, EOK);
    6363
    6464        /*
     
    104104                case VFS_RENAME:
    105105                default:
    106                         ipc_answer_fast_0(callid, ENOTSUP);
     106                        ipc_answer_0(callid, ENOTSUP);
    107107                        break;
    108108                }
Note: See TracChangeset for help on using the changeset viewer.