summaryrefslogtreecommitdiff
path: root/libports/ports.h
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-09-06 22:17:05 +0000
committerMiles Bader <miles@gnu.org>1995-09-06 22:17:05 +0000
commit893da1c7d87efffe9f106b6090e9eee6d6a8a9f0 (patch)
tree20c695c45dd488f9e24d76cd2c5f9c505de16965 /libports/ports.h
parent719c201174e1d8031a7f59ee58831363a500e45d (diff)
(ports_interrupt_server, ports_S_interrupt_operation): New declarations.
Diffstat (limited to 'libports/ports.h')
-rw-r--r--libports/ports.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/libports/ports.h b/libports/ports.h
index 7be547ae..36f514db 100644
--- a/libports/ports.h
+++ b/libports/ports.h
@@ -248,9 +248,9 @@ void ports_resume_all_rpcs (void);
/* Cancel (with thread_cancel) any RPC's in progress on PORT. */
void ports_interrupt_rpc (void *port);
-/* Notification */
+/* Default servers */
-/* A notification server that calls the ports_do_mach_* routines. */
+/* A notification server that calls the ports_do_mach_notify_* routines. */
int ports_notify_server (mach_msg_header_t *, mach_msg_header_t *);
/* Notification server routines called by ports_notify_server. */
@@ -260,6 +260,10 @@ error_t ports_do_mach_notify_no_senders (mach_port_t port, mach_port_mscount_t c
error_t ports_do_mach_notify_port_deleted (mach_port_t notify, mach_port_t name);
error_t ports_do_mach_notify_port_destroyed (mach_port_t notify, mach_port_t name);
error_t ports_do_mach_notify_send_once (mach_port_t notify);
+
+/* A default interrupt server */
+int ports_interrupt_server (mach_msg_header_t *, mach_msg_header_t *);
+error_t ports_S_interrupt_operation (mach_port_t port);
/* Private data */
extern struct mutex _ports_lock;