Changeset 15039b67 in mainline for libc/generic/async.c


Ignore:
Timestamp:
2006-06-11T17:05:41Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f8d5b85
Parents:
290c0db
Message:

Modified uspace to match changes in kernel ipc/irq.
Fixed types in ega fb.
Added dummy interfacing with PS/2 mouse.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/async.c

    r290c0db r15039b67  
    449449{
    450450        /* Unrouted call - do some default behaviour */
    451         switch (IPC_GET_METHOD(*call)) {
    452         case IPC_M_INTERRUPT:
     451        if ((callid & IPC_CALLID_NOTIFICATION)) {
    453452                in_interrupt_handler = 1;
    454453                (*interrupt_received)(callid,call);
    455454                in_interrupt_handler = 0;
    456455                return;
     456        }               
     457
     458        switch (IPC_GET_METHOD(*call)) {
    457459        case IPC_M_CONNECT_ME_TO:
    458460                /* Open new connection with thread etc. */
Note: See TracChangeset for help on using the changeset viewer.