Changeset 9359aae in mainline for uspace/lib/c
- Timestamp:
- 2013-12-31T03:49:00Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0c322fa
- Parents:
- 7f80313
- Location:
- uspace/lib/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ddi.c
r7f80313 r9359aae 280 280 * 281 281 */ 282 int irq_register(int inr, int devno, int method, irq_code_t *ucode)282 int irq_register(int inr, int devno, int method, const irq_code_t *ucode) 283 283 { 284 284 return __SYSCALL4(SYS_IRQ_REGISTER, inr, devno, method, -
uspace/lib/c/include/ddi.h
r7f80313 r9359aae 130 130 } 131 131 132 extern int irq_register(int, int, int, irq_code_t *);132 extern int irq_register(int, int, int, const irq_code_t *); 133 133 extern int irq_unregister(int, int); 134 134
Note:
See TracChangeset
for help on using the changeset viewer.