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


Ignore:
Timestamp:
2011-01-29T11:36:08Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
46b881c
Parents:
64d2b10
Message:

do not intermix low-level IPC methods with async framework methods

File:
1 edited

Legend:

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

    r64d2b10 rffa2c8ef  
    3636 */
    3737
    38 #include <ipc/ipc.h>
    3938#include <ipc/services.h>
    4039#include <ipc/ns.h>
     
    5857         * This call needs to be answered.
    5958         */
    60         ipc_answer_0(iid, EOK);
     59        async_answer_0(iid, EOK);
    6160       
    6261        while (keep_on_going) {
     
    120119                        vfs_dup(callid, &call);
    121120                default:
    122                         ipc_answer_0(callid, ENOTSUP);
     121                        async_answer_0(callid, ENOTSUP);
    123122                        break;
    124123                }
Note: See TracChangeset for help on using the changeset viewer.