Changeset 162f919 in mainline for generic/src/ipc/sysipc.c
- Timestamp:
- 2006-05-02T21:49:05Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc35e88
- Parents:
- 281224a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/ipc/sysipc.c
r281224a r162f919 36 36 #include <ipc/ipc.h> 37 37 #include <ipc/sysipc.h> 38 #include <ipc/irq.h> 38 39 #include <ipc/ipcrsc.h> 39 40 #include <arch/interrupt.h> … … 478 479 479 480 /** Connect irq handler to task */ 480 __native sys_ipc_register_irq(__native irq )481 __native sys_ipc_register_irq(__native irq, irq_code_t *ucode) 481 482 { 482 483 if (irq >= IRQ_COUNT) … … 484 485 485 486 irq_ipc_bind_arch(irq); 486 return ipc_irq_register(&TASK->answerbox, irq); 487 488 return ipc_irq_register(&TASK->answerbox, irq, ucode); 487 489 } 488 490
Note:
See TracChangeset
for help on using the changeset viewer.