diff options
Diffstat (limited to 'include/device')
-rw-r--r-- | include/device/intr.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/device/intr.h b/include/device/intr.h index a02b64c..e7aa7e2 100644 --- a/include/device/intr.h +++ b/include/device/intr.h @@ -11,7 +11,19 @@ typedef struct int line; } mach_intr_notification_t; +typedef struct +{ + mach_msg_header_t intr_header; + mach_msg_type_t line_type; + mach_msg_type_number_t line; + mach_msg_type_t count_type; + mach_msg_type_number_t count; + mach_msg_type_t port_type; + mach_port_t interrupt_port; +} mach_intr_notification2_t; + #define INTR_NOTIFY_MSGH_SEQNO 0 #define MACH_INTR_NOTIFY 424242 +#define MACH_INTR_NOTIFY2 424247 #endif |