Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1060 → Rev 1061

/uspace/trunk/libipc/include/ipc.h
64,5 → 64,6
ipc_async_callback_t callback);
int ipc_connect_to_me(int phoneid, int arg1, int arg2,
unsigned long long *taskid);
int ipc_connect_me_to(int phoneid, int arg1, int arg2);
 
#endif
/uspace/trunk/libipc/generic/ipc.c
245,3 → 245,10
return __SYSCALL4(SYS_IPC_CONNECT_TO_ME, phoneid, arg1, arg2,
(sysarg_t) taskid);
}
 
/** Ask through phone for a new connection to some service */
int ipc_connect_me_to(int phoneid, int arg1, int arg2)
{
return __SYSCALL3(SYS_IPC_CONNECT_ME_TO, phoneid, arg1, arg2);
}