diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-03-02 15:39:43 -0800 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-03-03 11:35:29 +0100 |
commit | 8d4a84a44b85dd982f3130d004c29c8382f516ac (patch) | |
tree | 94ce8cd286f2c7d9586400b863ee66dddbe662a8 /startup | |
parent | 835a1112dc5ca8d066fa1d0e2dfb979c19bf58be (diff) | |
download | hurd-8d4a84a44b85dd982f3130d004c29c8382f516ac.tar.gz hurd-8d4a84a44b85dd982f3130d004c29c8382f516ac.tar.bz2 hurd-8d4a84a44b85dd982f3130d004c29c8382f516ac.zip |
shutdown: rename shutdown RPC to shutdown_shutdown
For coherency with usage, and to avoid conflicting with shutdown(2)
* hurd/shutdown.defs (shutdown): Rename to shutdown_shutdown.
* shutdown/shutdown.c (S_shutdown): Rename to S_shutdown_shutdown.
* startup/startup.c (do_shutdown): Call shutdown_shutdown instead of
shutdown.
Diffstat (limited to 'startup')
-rw-r--r-- | startup/startup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/startup/startup.c b/startup/startup.c index 33b5b9f2..fd16eb73 100644 --- a/startup/startup.c +++ b/startup/startup.c @@ -189,7 +189,7 @@ do_shutdown (void) if (! MACH_PORT_VALID (pc)) return errno; - shutdown (pc); + shutdown_shutdown (pc); return 0; } |