Fix documented argv and envp params for posix_spawn
This commit is contained in:
parent
8c57b8b2b4
commit
d4e61b73a9
|
@ -39,11 +39,11 @@ SYNOPSIS
|
|||
int posix_spawn(pid_t *<[pid]>, const char *<[path]>,
|
||||
const posix_spawn_file_actions_t *<[file_actions]>,
|
||||
const posix_spawnattr_t *<[attrp]>,
|
||||
char *const <[argv]>, char *const <[envp]>);
|
||||
char *const <[argv]>[], char *const <[envp]>[]);
|
||||
int posix_spawnp(pid_t *<[pid]>, const char *<[file]>,
|
||||
const posix_spawn_file_actions_t *<[file_actions]>,
|
||||
const posix_spawnattr_t *<[attrp]>,
|
||||
char *const <[argv]>, char *const <[envp]>);
|
||||
char *const <[argv]>[], char *const <[envp]>[]);
|
||||
|
||||
DESCRIPTION
|
||||
Use <<posix_spawn>> and <<posix_spawnp>> to create a new child process
|
||||
|
|
Loading…
Reference in New Issue