posix_spawnp ( pid file file_actions attrp argv envp -- int ) (original) (raw)

posix_spawnp ( pid file file_actions attrp argv envp -- int )

Vocabulary
unix.process

Inputs

pid an object
file an object
file_actions an object
attrp an object
argv an object
envp an object

Outputs

int an object

Definition

USING: alien.c-types alien.syntax unix.types ;

IN: unix.process

FUNCTION: int posix_spawnp
( pid_t* pid, c-string file, posix_spawn_file_actions_t*
file_actions, posix_spawnattr_t* attrp, c-string* argv,
c-string* envp )