#[repr(C)]pubstructSpawnArgs{/// argc contains the number of arguments passed to the program.
pubargc:u64,
/// argv is a one-dimensional array of strings.
pubargv:*const*consti8,
/// a pointer used to save the process_id of the child process.
pubprocess_id:*mutu64,
/// an array representing the file descriptors passed to the child process. It must end with zero.
pubinherited_fds:*constu64,
}