Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/trace.c

    rffa2c8ef r7e752b2  
    3636#include <stdlib.h>
    3737#include <unistd.h>
     38#include <ipc/ipc.h>
    3839#include <fibril.h>
    3940#include <errno.h>
     
    148149        int rc;
    149150
    150         rc = async_connect_kbox(task_id);
     151        rc = ipc_connect_kbox(task_id);
    151152
    152153        if (rc == ENOTSUP) {
     
    286287{
    287288        ipc_call_t call;
    288         sysarg_t phoneid;
     289        ipcarg_t phoneid;
    289290       
    290291        if (sc_rc == (sysarg_t) IPC_CALLRET_FATAL ||
     
    294295        phoneid = sc_args[0];
    295296
    296         IPC_SET_IMETHOD(call, sc_args[1]);
     297        IPC_SET_METHOD(call, sc_args[1]);
    297298        IPC_SET_ARG1(call, sc_args[2]);
    298299        IPC_SET_ARG2(call, sc_args[3]);
     
    330331        phoneidx = sc_args[0];
    331332
    332         IPC_SET_IMETHOD(question, sc_args[1]);
     333        IPC_SET_METHOD(question, sc_args[1]);
    333334        IPC_SET_ARG1(question, sc_args[2]);
    334335        IPC_SET_ARG2(question, sc_args[3]);
     
    744745        abort_trace = true;
    745746        udebug_end(phoneid);
    746         async_hangup(phoneid);
     747        ipc_hangup(phoneid);
    747748
    748749        ipcp_cleanup();
Note: See TracChangeset for help on using the changeset viewer.