summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-05-06 20:05:18 +0000
committerMiles Bader <miles@gnu.org>1996-05-06 20:05:18 +0000
commitcebf8f534ace1b06d8235102e2fb53325c2fe21f (patch)
treed32413764d50d4ebdf38c6afc2cdfa15463413a7 /hurd
parent52a5127dcf79b9235dd48f7f1f8b8f0d70da542b (diff)
Pass in an array of port names instead of ports.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/msg.defs8
1 files changed, 4 insertions, 4 deletions
diff --git a/hurd/msg.defs b/hurd/msg.defs
index 44dab064..32c962af 100644
--- a/hurd/msg.defs
+++ b/hurd/msg.defs
@@ -193,12 +193,12 @@ routine msg_report_wait (
out wait_desc: string_t;
out wait_rpc: int);
-/* Given a set of PORTS, return a description of them from libc's point of
- view, in a '\0'-separated vector. Ports that libc doesn't know about
- should result in a zero-length entry. */
+/* Given a list of port names in NAMES, return a description of the
+ corresponding port from libc's point of view, in a '\0'-separated vector.
+ Ports that libc doesn't know about should result in a zero-length entry. */
routine msg_describe_ports (
process: mach_port_t;
refport: mach_port_t;
- ports: portarray_t;
+ names: mach_port_name_array_t;
out descriptions: data_t);