Subversion Repositories HelenOS-historic

Rev

Rev 1028 | Rev 1089 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1028 Rev 1061
Line 243... Line 243...
243
              unsigned long long *taskid)
243
              unsigned long long *taskid)
244
{
244
{
245
    return __SYSCALL4(SYS_IPC_CONNECT_TO_ME, phoneid, arg1, arg2,
245
    return __SYSCALL4(SYS_IPC_CONNECT_TO_ME, phoneid, arg1, arg2,
246
              (sysarg_t) taskid);
246
              (sysarg_t) taskid);
247
}
247
}
-
 
248
 
-
 
249
/** Ask through phone for a new connection to some service */
-
 
250
int ipc_connect_me_to(int phoneid, int arg1, int arg2)
-
 
251
{
-
 
252
    return __SYSCALL3(SYS_IPC_CONNECT_ME_TO, phoneid, arg1, arg2);
-
 
253
}
-
 
254