Changeset 6843a9c in mainline for uspace/lib/drv/include/ddf/interrupt.h
- Timestamp:
- 2012-06-29T13:02:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 722912e
- Parents:
- ba72f2b (diff), 0bbd13e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/ddf/interrupt.h
rba72f2b r6843a9c 36 36 #define DDF_INTERRUPT_H_ 37 37 38 #include <libarch/common.h> 39 #include <libarch/types.h> 38 40 #include <abi/ddi/irq.h> 39 41 #include <adt/list.h> 40 42 #include <ddi.h> 41 43 #include <fibril_synch.h> 42 43 44 #include "driver.h" 44 45 #include "../dev_iface.h" … … 64 65 } interrupt_context_list_t; 65 66 66 extern interrupt_context_t *create_interrupt_context(void); 67 extern void delete_interrupt_context(interrupt_context_t *); 68 extern void init_interrupt_context_list(interrupt_context_list_t *); 69 extern void add_interrupt_context(interrupt_context_list_t *, 70 interrupt_context_t *); 71 extern void remove_interrupt_context(interrupt_context_list_t *, 72 interrupt_context_t *); 73 extern interrupt_context_t *find_interrupt_context_by_id( 74 interrupt_context_list_t *, int); 75 extern interrupt_context_t *find_interrupt_context( 76 interrupt_context_list_t *, ddf_dev_t *, int); 77 67 extern void interrupt_init(void); 78 68 extern int register_interrupt_handler(ddf_dev_t *, int, interrupt_handler_t *, 79 69 irq_code_t *);
Note:
See TracChangeset
for help on using the changeset viewer.