Browse Source

fix: sys reboot (#54)

由于dragonos修正了sys_reboot系统调用(对齐Linux),因此把novashell的reboot调整为跟DragonOS一致.
LoGin 3 tháng trước cách đây
mục cha
commit
d7d2136c5a
1 tập tin đã thay đổi với 9 bổ sung1 xóa
  1. 9 1
      src/shell/command/mod.rs

+ 9 - 1
src/shell/command/mod.rs

@@ -1,4 +1,5 @@
 use help::Helper;
+use libc::{reboot, LINUX_REBOOT_CMD_RESTART};
 use std::collections::HashMap;
 use std::os::fd::{AsFd, AsRawFd};
 use std::os::unix::process::CommandExt;
@@ -169,7 +170,14 @@ impl BuildInCmd {
 
     fn shell_cmd_reboot(args: &Vec<String>) -> Result<(), ExecuteErrorType> {
         if args.len() == 0 {
-            unsafe { libc::syscall(libc::SYS_reboot, 0, 0, 0, 0, 0, 0) };
+            // 调用 reboot 系统调用
+            unsafe {
+                let result = reboot(LINUX_REBOOT_CMD_RESTART);
+                if result == -1 {
+                    eprintln!("Failed to reboot: {}", std::io::Error::last_os_error());
+                    return Err(ExecuteErrorType::ExecuteFailed);
+                }
+            }
             return Ok(());
         } else {
             return Err(ExecuteErrorType::TooManyArguments);