Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1866
Line 29... Line 29...
29
/** @addtogroup libc
29
/** @addtogroup libc
30
 * @{
30
 * @{
31
 * @}
31
 * @}
32
 */
32
 */
33
 
33
 
34
 /** @addtogroup libcipc IPC
34
/** @addtogroup libcipc IPC
35
 * @brief HelenOS uspace IPC
35
 * @brief HelenOS uspace IPC
36
 * @{
36
 * @{
37
 * @ingroup libc
37
 * @ingroup libc
38
 */
38
 */
39
/** @file
39
/** @file
Line 462... Line 462...
462
int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, ipcarg_t arg1)
462
int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, ipcarg_t arg1)
463
{
463
{
464
    return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1);
464
    return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1);
465
}
465
}
466
 
466
 
467
 
-
 
468
 
-
 
469
 /** @}
467
/** @}
470
 */
468
 */
471
 
-
 
472
 
-