summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--startup/startup.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/startup/startup.c b/startup/startup.c
index 5c46c0f1..c76c8304 100644
--- a/startup/startup.c
+++ b/startup/startup.c
@@ -117,8 +117,10 @@ static struct ntfy_task *ntfy_tasks;
/* Our receive right */
static mach_port_t startup;
-/* Ports to the kernel */
-static mach_port_t host_priv, device_master;
+/* Ports to the kernel. We use alias to the internal glibc locations
+ so that other code can get them using get_privileged_ports. */
+#define host_priv _hurd_host_priv
+#define device_master _hurd_device_master
/* Args to bootstrap, expressed as flags */
static int bootstrap_args = 0;