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

    r64d2b10 rffa2c8ef  
    4242
    4343#include "tmpfs.h"
    44 #include <ipc/ipc.h>
    4544#include <ipc/services.h>
    4645#include <ipc/ns.h>
     
    9190                 * created by IPC_M_CONNECT_TO_ME.
    9291                 */
    93                 ipc_answer_0(iid, EOK);
     92                async_answer_0(iid, EOK);
    9493        }
    9594       
     
    143142                        break;
    144143                default:
    145                         ipc_answer_0(callid, ENOTSUP);
     144                        async_answer_0(callid, ENOTSUP);
    146145                        break;
    147146                }
Note: See TracChangeset for help on using the changeset viewer.