Subversion Repositories HelenOS-historic

Rev

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

Rev 1518 Rev 1610
Line 435... Line 435...
435
int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, ipcarg_t arg1)
435
int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, ipcarg_t arg1)
436
{
436
{
437
    return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1);
437
    return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1);
438
}
438
}
439
 
439
 
440
/* Primitive functions for simple communication */
-
 
441
void send_call_3(int phoneid, ipcarg_t method, ipcarg_t arg1,
-
 
442
         ipcarg_t arg2, ipcarg_t arg3)
-
 
443
{
-
 
444
    ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL, 1);
-
 
445
}
-
 
446
 
-
 
447
void send_call_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2)
-
 
448
{
-
 
449
    ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL, 1);
-
 
450
}
-
 
451
 
-
 
452
void nsend_call_3(int phoneid, ipcarg_t method, ipcarg_t arg1,
-
 
453
          ipcarg_t arg2, ipcarg_t arg3)
-
 
454
{
-
 
455
    ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL, 0);
-
 
456
}
-
 
457
 
-
 
458
void nsend_call_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2)
-
 
459
{
-
 
460
    ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL, 0);
-
 
461
}
-
 
462
 
-