diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-04-09 16:53:16 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-04-09 18:31:38 +0200 |
commit | ddddd501fedda7f0462702717e634f7be107bd32 (patch) | |
tree | 2e73da69cbfb69726d37844f88d02685e41ba034 /hurd/interrupt.defs | |
parent | e9687ec4ff525ae4a88314ba4ae97da770bd012f (diff) |
hurd: add a new type interrupt_t for the interrupt protocol
* hurd/hurd_types.defs (interrupt_t): New type.
* hurd/hurd_types.h (interrupt_t): Likewise.
* hurd/interrupt.defs (interrupt_operation): Use the new type.
Diffstat (limited to 'hurd/interrupt.defs')
-rw-r--r-- | hurd/interrupt.defs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hurd/interrupt.defs b/hurd/interrupt.defs index cc3ad1ea..9981aed1 100644 --- a/hurd/interrupt.defs +++ b/hurd/interrupt.defs @@ -23,10 +23,14 @@ subsystem interrupt 33000; #include <hurd/hurd_types.defs> +#ifdef INTERRUPT_IMPORTS +INTERRUPT_IMPORTS +#endif + /* Cause a pending request on this object to immediately return. The exact semantics are dependent on the specific object. */ routine -interrupt_operation (object: mach_port_t; +interrupt_operation (object: interrupt_t; waittime timeout: natural_t; msgseqno seqno: mach_port_seqno_t); |