aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/reboot.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-04-19 22:53:58 +0000
committerRoland McGrath <roland@gnu.org>2001-04-19 22:53:58 +0000
commit5017b2c845c235542b3101b9cf648f72b9f6ed3e (patch)
treea0ff7d3eb2602ba4f969295acefd2a0150f23d83 /sysdeps/mach/hurd/reboot.c
parent426c52791a55674af144a8122be2847df625594c (diff)
downloadglibc-5017b2c845c235542b3101b9cf648f72b9f6ed3e.tar
glibc-5017b2c845c235542b3101b9cf648f72b9f6ed3e.tar.gz
glibc-5017b2c845c235542b3101b9cf648f72b9f6ed3e.tar.bz2
glibc-5017b2c845c235542b3101b9cf648f72b9f6ed3e.zip
* hurd/privports.c (__get_privileged_ports): Renamed with __.
Use __ names for calls we make. (get_privileged_ports): Add alias. * hurd/hurd.h: Declare it with the __ name. * sysdeps/mach/hurd/reboot.c (reboot): Use __get_privileged_ports. * sysdeps/mach/hurd/adjtime.c (__adjtime): Likewise. * sysdeps/mach/hurd/settimeofday.c (__settimeofday): Likewise.
Diffstat (limited to 'sysdeps/mach/hurd/reboot.c')
-rw-r--r--sysdeps/mach/hurd/reboot.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/sysdeps/mach/hurd/reboot.c b/sysdeps/mach/hurd/reboot.c
index ea298b2135..528bffa343 100644
--- a/sysdeps/mach/hurd/reboot.c
+++ b/sysdeps/mach/hurd/reboot.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 93, 94, 97, 98 Free Software Foundation, Inc.
+/* Copyright (C) 1992,93,94,97,98,2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -28,12 +28,11 @@ reboot (int howto)
{
error_t err;
startup_t init;
- mach_port_t hostpriv, devmaster;
+ mach_port_t hostpriv;
- if (err = __USEPORT (PROC, __proc_getprivports (port,
- &hostpriv, &devmaster)))
- return __hurd_fail (err);
- __mach_port_deallocate (__mach_task_self (), devmaster);
+ err = __get_privileged_ports (&hostpriv, NULL);
+ if (err)
+ return __hurd_fail (EPERM);
err = __USEPORT (PROC, __proc_getmsgport (port, 1, &init));
if (!err)