Files
linux-kernel-module-cheat/kernel_module/user/poweroff.c
Ciro Santilli e8f09a76e6 Add a shortcute for /eval.sh
Create /eval_base64.sh to overcome quoting and newline limitations.

Documente poweroff's failure on readme.
2018-03-14 21:13:45 +00:00

13 lines
271 B
C

/* Userspace is for the weak. Die.
* https://stackoverflow.com/questions/28812514/how-to-shutdown-linux-using-c-or-qt-without-call-to-system
**/
#include <stdio.h>
#include <sys/reboot.h>
#include <unistd.h>
int main(void) {
puts(__FILE__);
reboot(RB_POWER_OFF);
}