Changeset ffa2c8ef in mainline for uspace/srv/fs/devfs/devfs.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/fs/devfs/devfs.c

    r64d2b10 rffa2c8ef  
    4040
    4141#include <stdio.h>
    42 #include <ipc/ipc.h>
    4342#include <ipc/services.h>
    4443#include <ipc/ns.h>
     
    6362{
    6463        if (iid)
    65                 ipc_answer_0(iid, EOK);
     64                async_answer_0(iid, EOK);
    6665       
    6766        while (true) {
     
    112111                        break;
    113112                default:
    114                         ipc_answer_0(callid, ENOTSUP);
     113                        async_answer_0(callid, ENOTSUP);
    115114                        break;
    116115                }
Note: See TracChangeset for help on using the changeset viewer.