Subversion Repositories HelenOS-historic

Rev

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

Rev 1282 Rev 1330
Line 146... Line 146...
146
    list_append(&call->list, &dispatched_calls);
146
    list_append(&call->list, &dispatched_calls);
147
}
147
}
148
 
148
 
149
 
149
 
150
/** Send answer to a received call */
150
/** Send answer to a received call */
151
void ipc_answer(ipc_callid_t callid, ipcarg_t retval, ipcarg_t arg1,
151
ipcarg_t ipc_answer(ipc_callid_t callid, ipcarg_t retval, ipcarg_t arg1,
152
        ipcarg_t arg2)
152
        ipcarg_t arg2)
153
{
153
{
154
    __SYSCALL4(SYS_IPC_ANSWER_FAST, callid, retval, arg1, arg2);
154
    return __SYSCALL4(SYS_IPC_ANSWER_FAST, callid, retval, arg1, arg2);
155
}
155
}
156
 
156
 
157
/** Try to dispatch queed calls from async queue */
157
/** Try to dispatch queed calls from async queue */
158
static void try_dispatch_queued_calls(void)
158
static void try_dispatch_queued_calls(void)
159
{
159
{
Line 269... Line 269...
269
 
269
 
270
int ipc_unregister_irq(int irq)
270
int ipc_unregister_irq(int irq)
271
{
271
{
272
    return __SYSCALL1(SYS_IPC_UNREGISTER_IRQ, irq);
272
    return __SYSCALL1(SYS_IPC_UNREGISTER_IRQ, irq);
273
}
273
}
-
 
274
 
-
 
275
/*
-
 
276
int ipc_open_dgrconn(int pohoneid, size_t max_dgram)
-
 
277
{
-
 
278
   
-
 
279
}
-
 
280
 
-
 
281
 
-
 
282
*/