1
0
mirror of https://github.com/rcore-os/rCore.git synced 2025-01-31 10:04:04 +04:00

disable so many wait4 LOG info

This commit is contained in:
chyyuu 2019-04-26 18:58:42 +08:00
parent 1974cc5853
commit c853eda9b3

View File

@ -62,7 +62,7 @@ pub fn sys_clone(
/// Wait for the process exit.
/// Return the PID. Store exit code to `wstatus` if it's not null.
pub fn sys_wait4(pid: isize, wstatus: *mut i32) -> SysResult {
info!("wait4: pid: {}, code: {:?}", pid, wstatus);
//info!("wait4: pid: {}, code: {:?}", pid, wstatus);
if !wstatus.is_null() {
process().vm.check_write_ptr(wstatus)?;
}