fmt & fixed

This commit is contained in:
闭浩扬 2023-02-04 22:43:58 +08:00
parent f45e14bfeb
commit 76ac3b9886
6 changed files with 21 additions and 21 deletions

View file

@ -1,6 +1,6 @@
//! Process management syscalls
use crate::task::{exit_current_and_run_next, suspend_current_and_run_next, change_program_brk};
use crate::task::{change_program_brk, exit_current_and_run_next, suspend_current_and_run_next};
use crate::timer::get_time_ms;
/// task exits and submit an exit code
@ -28,4 +28,4 @@ pub fn sys_sbrk(size: i32) -> isize {
} else {
-1
}
}
}