0
10
94
168
444
99
一 重启(reboot) 应用程序通过reboot系统调用实现机器重启,reboot系统调用定义在kernel/sys.c文件中: SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd,void __user *, arg) { if (!capable(CAP_SYS_BOOT))return -EPERM; .....