diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2001-01-30 23:45:32 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2001-01-30 23:45:32 +0000 |
commit | 0bb14d0b8d6a7b36cf0bf445dbfebfe76ed6a592 (patch) | |
tree | 64f8ef543d938e63c1ccb9ccf381223bf35cac0b /libfshelp/fetch-root.c | |
parent | 1bec8dc0fea138a7a6a1e340916d2bc66e9cdfb2 (diff) |
daemons/
2001-01-17 Neal H Walfield <neal@cs.uml.edu>
* console-run.c (open_console): Conform to new
fshelp_start_translator semantics.
init/
2001-01-17 Neal H Walfield <neal@cs.uml.edu>
* init.c (open_console): Conform to new fshelp_start_translator
semantics.
libfshelp/
2001-01-17 Neal H Walfield <neal@cs.uml.edu>
* fshelp.h: Add two new parameters to fshelp_open_fn_t:
a port to the new task and a cookie.
Add a new parameter, cookie, to fshelp_start_translator and
fshelp_start_translator_long that will be passed to
fshelp_open_fn_t.
* fetch-root.c (fshelp_fetch_root): Conform to new
fshelp_start_translator_long semantics.
* start-translator-long.c (service_fsys_startup): Likewise.
(fshelp_start_translator_long): Likewise.
* start-translator.c (fshelp_start_translator): Likewise.
libtreefs/
Conform to new fshelp_start_translator semantics.
trans/
2001-01-17 Neal H Walfield <neal@cs.uml.edu>
* pump.c (start_pfinet): Conform to new fshelp_start_translator
semantics.
utils/
2001-01-17 Neal H Walfield <neal@cs.uml.edu>
* mount.c (do_mount): Conform to new fshelp_start_translator
semantics.
* settrans.c (main): Conform to new fshelp_start_translator
semantics therby allowing us to print the pid of the an
active translator.
Diffstat (limited to 'libfshelp/fetch-root.c')
-rw-r--r-- | libfshelp/fetch-root.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libfshelp/fetch-root.c b/libfshelp/fetch-root.c index 0f255bff..3ce6293c 100644 --- a/libfshelp/fetch-root.c +++ b/libfshelp/fetch-root.c @@ -84,7 +84,8 @@ fshelp_fetch_root (struct transbox *box, void *cookie, return ret; } error_t fetch_underlying (int flags, mach_port_t *underlying, - mach_msg_type_name_t *underlying_type) + mach_msg_type_name_t *underlying_type, + task_t task, void *cookie) { return (*callback2) (box->cookie, cookie, flags, @@ -130,7 +131,7 @@ fshelp_fetch_root (struct transbox *box, void *cookie, fds[STDERR_FILENO] = reauth (getdport (STDERR_FILENO)); - err = fshelp_start_translator_long (fetch_underlying, + err = fshelp_start_translator_long (fetch_underlying, NULL, argz, argz, argz_len, fds, MACH_MSG_TYPE_COPY_SEND, STDERR_FILENO + 1, |