Subversion Repositories HelenOS-historic

Rev

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

Rev 1061 Rev 1089
Line 250... Line 250...
250
int ipc_connect_me_to(int phoneid, int arg1, int arg2)
250
int ipc_connect_me_to(int phoneid, int arg1, int arg2)
251
{
251
{
252
    return __SYSCALL3(SYS_IPC_CONNECT_ME_TO, phoneid, arg1, arg2);
252
    return __SYSCALL3(SYS_IPC_CONNECT_ME_TO, phoneid, arg1, arg2);
253
}
253
}
254
 
254
 
-
 
255
/* Hang up specified phone */
-
 
256
int ipc_hangup(int phoneid)
-
 
257
{
-
 
258
    return __SYSCALL1(SYS_IPC_HANGUP, phoneid);
-
 
259
}