77bf99deb0
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21223 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
453 B
C
33 lines
453 B
C
/*
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
|
|
#include <kernel.h>
|
|
#include <syscalls.h>
|
|
|
|
|
|
status_t
|
|
system_shutdown(bool reboot)
|
|
{
|
|
// ToDo: shutdown all system services!
|
|
|
|
sync();
|
|
|
|
return arch_cpu_shutdown(reboot);
|
|
}
|
|
|
|
|
|
// #pragma mark -
|
|
|
|
|
|
status_t
|
|
_user_shutdown(bool reboot)
|
|
{
|
|
if (geteuid() != 0)
|
|
return B_NOT_ALLOWED;
|
|
return system_shutdown(reboot);
|
|
}
|
|
|