Changeset 162f919 in mainline for generic/include/ipc


Ignore:
Timestamp:
2006-05-02T21:49:05Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc35e88
Parents:
281224a
Message:

Added means to make a simple action upon interrupt.

Location:
generic/include/ipc
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • generic/include/ipc/ipc.h

    r281224a r162f919  
    211211extern void ipc_backsend_err(phone_t *phone, call_t *call, __native err);
    212212
    213 extern int ipc_irq_register(answerbox_t *box, int irq);
    214 extern void ipc_irq_send_notif(int irq);
    215 extern void ipc_irq_unregister(answerbox_t *box, int irq);
    216 
    217213
    218214extern answerbox_t *ipc_phone_0;
  • generic/include/ipc/sysipc.h

    r281224a r162f919  
    3131
    3232#include <ipc/ipc.h>
     33#include <ipc/irq.h>
    3334
    3435__native sys_ipc_call_sync_fast(__native phoneid, __native method,
     
    4647                              __native method, __native arg1);
    4748__native sys_ipc_hangup(int phoneid);
    48 __native sys_ipc_register_irq(__native irq);
     49__native sys_ipc_register_irq(__native irq, irq_code_t *ucode);
    4950__native sys_ipc_unregister_irq(__native irq);
    5051
    51 void irq_ipc_bind_arch(__native irq);
    52 
    5352#endif
Note: See TracChangeset for help on using the changeset viewer.