1 #include "defs.h"
2 #include <linux/reboot.h>
3
4 #include "xlat/bootflags1.h"
5 #include "xlat/bootflags2.h"
6 #include "xlat/bootflags3.h"
7
8 int
sys_reboot(struct tcb * tcp)9 sys_reboot(struct tcb *tcp)
10 {
11 if (exiting(tcp))
12 return 0;
13
14 printflags(bootflags1, tcp->u_arg[0], "LINUX_REBOOT_MAGIC_???");
15 tprints(", ");
16 printflags(bootflags2, tcp->u_arg[1], "LINUX_REBOOT_MAGIC_???");
17 tprints(", ");
18 printflags(bootflags3, tcp->u_arg[2], "LINUX_REBOOT_CMD_???");
19 if (tcp->u_arg[2] == LINUX_REBOOT_CMD_RESTART2) {
20 tprints(", ");
21 printstr(tcp, tcp->u_arg[3], -1);
22 }
23 return 0;
24 }
25