Module spawn

Source
Expand description

Safe wrappers around posix_spawn* functions found in the libc “spawn.h” header.

Structs§

PosixSpawnAttr
A spawn attributes object. See posix_spawnattr_t.
PosixSpawnFileActions
A spawn file actions object. See posix_spawn_file_actions_t.
PosixSpawnFlags
Process attributes to be changed in the new process image when invoking posix_spawn or posix_spawnp. See posix_spawn.

Functions§

posix_spawn
Create a new child process from the specified process image. See posix_spawn.
posix_spawnp
Create a new child process from the specified process image. See posix_spawnp.