1. reboot:

#include <linux/reboot.h>
kernel_restart(NULL);

2. reboot -p或者shutdown:

#include <linux/reboot.h>
kernel_power_off();     
Logo

更多推荐