Changeset cf2af94 in mainline for uspace/srv/ns/clonable.c


Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cb15135a
Parents:
a49c4002 (diff), 0b37882 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/clonable.c

    ra49c4002 rcf2af94  
    4646typedef struct {
    4747        link_t link;
    48         ipcarg_t service;
     48        sysarg_t service;
    4949        ipc_call_t call;
    5050        ipc_callid_t callid;
     
    7373 *
    7474 */
    75 void register_clonable(ipcarg_t service, ipcarg_t phone, ipc_call_t *call,
     75void register_clonable(sysarg_t service, sysarg_t phone, ipc_call_t *call,
    7676    ipc_callid_t callid)
    7777{
     
    9292       
    9393        ipc_forward_fast(csr->callid, phone, IPC_GET_ARG2(csr->call),
    94                 IPC_GET_ARG3(csr->call), 0, IPC_FF_NONE);
     94            IPC_GET_ARG3(csr->call), 0, IPC_FF_NONE);
    9595       
    9696        free(csr);
     
    107107 *
    108108 */
    109 void connect_to_clonable(ipcarg_t service, ipc_call_t *call,
     109void connect_to_clonable(sysarg_t service, ipc_call_t *call,
    110110    ipc_callid_t callid)
    111111{
     
    127127        }
    128128       
     129        link_initialize(&csr->link);
    129130        csr->service = service;
    130131        csr->call = *call;
Note: See TracChangeset for help on using the changeset viewer.