summaryrefslogtreecommitdiff
path: root/libfshelp/fshelp.h
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-10-07 22:17:41 +0000
committerThomas Bushnell <thomas@gnu.org>1999-10-07 22:17:41 +0000
commitc310b96d9448f2c2ef324fc88f757a6dea6fc54a (patch)
tree546e0945d934eb7903dd1b1488d528d50ea3b362 /libfshelp/fshelp.h
parent6b9383cb0b3df0c5ba144e428937e78b98b76933 (diff)
1999-10-07 Thomas Bushnell, BSG <tb@mit.edu>
* start-translator-long.c (fshelp_start_translator_long): Doc fix. * fshelp.h (fshelp_start_translator_long): Document OWNER_UID.
Diffstat (limited to 'libfshelp/fshelp.h')
-rw-r--r--libfshelp/fshelp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libfshelp/fshelp.h b/libfshelp/fshelp.h
index 309f64b4..08622725 100644
--- a/libfshelp/fshelp.h
+++ b/libfshelp/fshelp.h
@@ -50,7 +50,9 @@ typedef error_t (*fshelp_open_fn_t) (int flags,
table to FDS (length FDS_LEN). Return the control port in
*CONTROL. If the translator doesn't respond or die in TIMEOUT
milliseconds (if TIMEOUT > 0), return an appropriate error. If the
- translator dies before responding, return EDIED. */
+ translator dies before responding, return EDIED. Set the new
+ task's owner to OWNER_UID (or, if OWNER_UID is -1, then clear the
+ new task's owner. */
error_t
fshelp_start_translator_long (fshelp_open_fn_t underlying_open_fn,
char *name, char *argz, int argz_len,
@@ -59,7 +61,7 @@ fshelp_start_translator_long (fshelp_open_fn_t underlying_open_fn,
mach_port_t *ports,
mach_msg_type_name_t ports_type, int ports_len,
int *ints, int ints_len,
- uid_t owner_uid,
+ uid_t owner_uid,
int timeout, fsys_t *control);