From 9482ee4ba48f8033f7916551f2767f48f9bd0c55 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Fri, 26 Feb 2016 20:05:40 +0100 Subject: New kind of notification, untested --- include/device/intr.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include/device') 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 -- cgit v1.2.3