24 lines
554 B
C
24 lines
554 B
C
/***********************************************************************
|
|
*
|
|
* 2007 Nico Schottelius (nico-cinit at schottelius.org)
|
|
*
|
|
* part of cLinux/cinit
|
|
*
|
|
* Reboot the system through a kill call
|
|
*/
|
|
|
|
#include <signal.h> /* kill() */
|
|
|
|
#include "messages.h" /* MSG_* */
|
|
#include "cinit.h" /* print_errno() */
|
|
#include "signals.h" /* signals mapping */
|
|
|
|
int main()
|
|
{
|
|
if(kill(1,SIG_CINIT_POWEROFF) == -1) {
|
|
print_errno(MSG_POWEROFF_KILL);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|