diff options
author | Justus Winter <justus@gnupg.org> | 2016-02-27 09:10:23 +0100 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2016-02-27 09:10:23 +0100 |
commit | 2cf0c62f09dc2069a9446a5a694bb73dd1322108 (patch) | |
tree | 0cb0d4b951f4ec9efa4686b2b3d9c05c92fed9eb /include/device | |
parent | 9482ee4ba48f8033f7916551f2767f48f9bd0c55 (diff) |
No need for a new kind of notification, we can provide a smoother upgrade path
Diffstat (limited to 'include/device')
-rw-r--r-- | include/device/intr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/device/intr.h b/include/device/intr.h index e7aa7e2..c1aa638 100644 --- a/include/device/intr.h +++ b/include/device/intr.h @@ -16,8 +16,12 @@ 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; |