pub fn proc_exec<M: MemorySize>(
ctx: FunctionEnvMut<'_, WasiEnv>,
name: WasmPtr<u8, M>,
name_len: M::Offset,
args: WasmPtr<u8, M>,
args_len: M::Offset,
) -> Result<(), WasiError>
Expand description
Replaces the current process with a new process
§Parameters
name
- Name of the process to be spawned
args
- List of the arguments to pass the process
(entries are separated by line feeds)
§Return
Returns a bus process id that can be used to invoke calls