ubuntu c++ 关机 重启 挂起 API

前端之家收集整理的这篇文章主要介绍了ubuntu c++ 关机 重启 挂起 API前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <unistd.h>
#include <linux/reboot.h>


int main() {
    reboot(LINUX_REBOOT_MAGIC1,LINUX_REBOOT_MAGIC2,LINUX_REBOOT_CMD_POWER_OFF,0);
    //   sync();
    //    reboot(LINUX_REBOOT_CMD_POWER_OFF);
}
Of course,you will need sufficient privileges to use this syscall.
必须有root权限哦
原文链接:https://www.f2er.com/ubuntu/350520.html

猜你在找的Ubuntu相关文章