diff options
author | Justus Winter <justus@gnupg.org> | 2016-02-27 23:49:57 +0100 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2016-02-27 23:49:57 +0100 |
commit | 7ae251bd9cdc26e03eb3300ace23209bc50493e6 (patch) | |
tree | c9d3bbc6fd5ec7ea84c169a6d9926c16c3313265 /include/device | |
parent | 2cf0c62f09dc2069a9446a5a694bb73dd1322108 (diff) |
Drop new notification, the old one is fine and turned out to be extensible
Diffstat (limited to 'include/device')
-rw-r--r-- | include/device/intr.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/include/device/intr.h b/include/device/intr.h index c1aa638..34798b4 100644 --- a/include/device/intr.h +++ b/include/device/intr.h @@ -7,27 +7,12 @@ typedef struct { mach_msg_header_t intr_header; - mach_msg_type_t intr_type; + mach_msg_type_t line_type; 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; - /* double check that count can be > 1 */ - /* it can not */ - mach_msg_type_t count_type; - mach_msg_type_number_t count; - /* actually, we might be able to stuff this port into the response port */ - /* works nicely */ - 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 |