2012-07-06 21:08:28 -07:00
|
|
|
/*
|
|
|
|
* reboot
|
|
|
|
*
|
|
|
|
* Reboot the system.
|
|
|
|
*/
|
2012-01-26 23:11:43 -06:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <syscall.h>
|
|
|
|
|
|
|
|
int main(int argc, char ** argv) {
|
|
|
|
printf("uid is %d\n", syscall_getuid());
|
|
|
|
if (syscall_reboot() < 0) {
|
|
|
|
printf("%s: need to be root.\n", argv[0]);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|