Subversion Repositories HelenOS

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1694 → Rev 1693

//uspace/trunk/libc/arch/amd64/include/ddi.h
File deleted
\ No newline at end of file
Property changes:
Deleted: svn:special
-*
\ No newline at end of property
//uspace/trunk/libc/arch/ia32/include/ddi.h
File deleted
//uspace/trunk/libc/generic/async.c
448,14 → 448,12
static void handle_call(ipc_callid_t callid, ipc_call_t *call)
{
/* Unrouted call - do some default behaviour */
if ((callid & IPC_CALLID_NOTIFICATION)) {
switch (IPC_GET_METHOD(*call)) {
case IPC_M_INTERRUPT:
in_interrupt_handler = 1;
(*interrupt_received)(callid,call);
in_interrupt_handler = 0;
return;
}
 
switch (IPC_GET_METHOD(*call)) {
case IPC_M_CONNECT_ME_TO:
/* Open new connection with thread etc. */
async_new_connection(IPC_GET_ARG3(*call), callid, call, client_connection);