use alloc::{string::String, vec::Vec}; use crate::{ arch::interrupt::TrapFrame, syscall::{Syscall, SystemError}, }; impl Syscall { pub fn do_execve( path: String, argv: Vec, envp: Vec, regs: &mut TrapFrame, ) -> Result<(), SystemError> { unimplemented!("Syscall::do_execve") } /// ## 用于控制和查询与体系结构相关的进程特定选项 pub fn arch_prctl(option: usize, arg2: usize) -> Result { unimplemented!("Syscall::arch_prctl") } }