Changes in kernel/generic/src/ipc/irq.c [94d211e:eadaeae8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/irq.c
r94d211e readaeae8 93 93 #endif 94 94 ranges[i].base = km_map(pbase[i], ranges[i].size, 95 PAGE_READ _WRITE | PAGE_KERNEL | PAGE_NOT_CACHEABLE);95 PAGE_READ | PAGE_WRITE | PAGE_KERNEL | PAGE_NOT_CACHEABLE); 96 96 if (!ranges[i].base) { 97 97 ranges_unmap(ranges, i); … … 314 314 */ 315 315 errno_t ipc_irq_subscribe(answerbox_t *box, inr_t inr, sysarg_t imethod, 316 irq_code_t *ucode, cap_ handle_t *uspace_handle)316 irq_code_t *ucode, cap_irq_handle_t *uspace_handle) 317 317 { 318 318 if ((inr < 0) || (inr > last_inr)) … … 390 390 * 391 391 */ 392 errno_t ipc_irq_unsubscribe(answerbox_t *box, int handle)392 errno_t ipc_irq_unsubscribe(answerbox_t *box, cap_irq_handle_t handle) 393 393 { 394 394 kobject_t *kobj = cap_unpublish(TASK, handle, KOBJECT_TYPE_IRQ);
Note:
See TracChangeset
for help on using the changeset viewer.