/* reboot.c author: Edvard Tuinder v892231@si.hhs.NL */ #include #include #include #include "namespace.h" #include #include int reboot(int how, char *bootstr) { message m; memset(&m, 0, sizeof(m)); m.m_lc_pm_reboot.how = how; return _syscall(PM_PROC_NR, PM_REBOOT, &m); }