summaryrefslogtreecommitdiff
path: root/exec/exec.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-11-09 06:40:21 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-11-09 06:40:21 +0000
commit1ab1f6596b77abdec3628e6e4d057e61ba0808d2 (patch)
tree167ab6a69631b607a32e600d14b36870e21dbd68 /exec/exec.c
parent59d2858a12f012af998e94a30cd7024e30cb327c (diff)
(set_active_trans): New function.
(S_exec_init): Call set_active_trans.
Diffstat (limited to 'exec/exec.c')
-rw-r--r--exec/exec.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/exec/exec.c b/exec/exec.c
index dbdd38b0..833fdc71 100644
--- a/exec/exec.c
+++ b/exec/exec.c
@@ -1494,6 +1494,22 @@ do_mach_notify_no_senders (mach_port_t port, mach_port_mscount_t mscount)
return KERN_SUCCESS;
}
+/* Attempt to set the active translator for the exec server so that
+ filesystems other than the bootstrap can find it. */
+set_active_trans ()
+{
+ file_t execnode;
+
+ execnode = file_name_lookup (_SERVERS_EXEC, O_NOTRANS | O_CREAT, 0666);
+ if (execnode == MACH_PORT_NULL)
+ return;
+
+ file_set_translator (execnode, 0, FS_TRANS_SET, 0, 0, 0, fsys,
+ MACH_MSG_TYPE_MAKE_SEND);
+ mach_port_deallocate (mach_task_self (), execnode);
+}
+
+
/* Sent by the bootstrap filesystem after the other essential
servers have been started up. */
@@ -1515,6 +1531,9 @@ S_exec_init (mach_port_t server, auth_t auth, process_t proc)
/* Do initial setup with the proc server. */
_hurd_proc_init (save_argv);
+ /* Set the active translator on /hurd/exec. */
+ set_active_trans ();
+
err = get_privileged_ports (&host_priv, &dev_master);
if (!err)
{