Changeset b74959bd in mainline for uspace/srv/fs


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/fs/fat/fat.c

    r3209923 rb74959bd  
    9494                 * created by IPC_M_CONNECT_TO_ME.
    9595                 */
    96                 ipc_answer_fast_0(iid, EOK);
     96                ipc_answer_0(iid, EOK);
    9797        }
    9898       
     
    105105                switch  (IPC_GET_METHOD(call)) {
    106106                default:
    107                         ipc_answer_fast_0(callid, ENOTSUP);
     107                        ipc_answer_0(callid, ENOTSUP);
    108108                        break;
    109109                }
Note: See TracChangeset for help on using the changeset viewer.