Skip to content

Commit

Permalink
fix: compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
chiichen committed Dec 6, 2024
1 parent 380b4c0 commit e1581cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kernel/src/process/syscall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ use crate::{
procfs::procfs_register_pid,
vfs::{file::FileDescriptorVec, MAX_PATHLEN},
},
libs::rand::rand_bytes,
mm::{
ucontext::{AddressSpace, UserStack},
verify_area, MemoryManagementArch, VirtAddr,
Expand Down Expand Up @@ -184,7 +185,7 @@ impl Syscall {
};
let (user_sp, argv_ptr) = unsafe {
param
.init_info()
.init_info_mut()
.push_at(
// address_space
// .write()
Expand Down

0 comments on commit e1581cf

Please sign in to comment.