pub const SYS_PROC_EXECVE: usize = 315; // 315usizeExpand description
Execute a new program, replacing the current process image.
path_ptr: pointer to the null-terminated path stringpath_len: length of the path stringargv_ptr: pointer to the argument arrayenvp_ptr: pointer to the environment array
This syscall never returns on success. The current process image is replaced with the new ELF binary.