diff options
author | Miles Bader <miles@gnu.org> | 1996-01-27 17:26:30 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-01-27 17:26:30 +0000 |
commit | 8ec68d37bbf75fac0b45d64d9f334881cf568964 (patch) | |
tree | f77687642901bb610d177d02692b147196eff682 /libports | |
parent | 3c03e4170a6ba48d1f70f4bb3ceea4a185fb50f9 (diff) |
(ports_S_interrupt_operation):
Use ports_interrupt_rpcs instead of ports_interrupt_rpc.
Fix spelling of cancel_threshold (was cancel_threshhold).
Diffstat (limited to 'libports')
-rw-r--r-- | libports/interrupt-operation.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libports/interrupt-operation.c b/libports/interrupt-operation.c index dac91715..1545f788 100644 --- a/libports/interrupt-operation.c +++ b/libports/interrupt-operation.c @@ -1,6 +1,6 @@ /* interrupt_operation - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -31,10 +31,10 @@ ports_S_interrupt_operation (mach_port_t port, if (!pi) return EOPNOTSUPP; mutex_lock (&_ports_lock); - if (pi->cancel_threshhold < seqno) - pi->cancel_threshhold = seqno; + if (pi->cancel_threshold < seqno) + pi->cancel_threshold = seqno; mutex_unlock (&_ports_lock); - ports_interrupt_rpc (pi); + ports_interrupt_rpcs (pi); ports_port_deref (pi); return 0; } |