initial implementation of posix_spawn
authorRich Felker <dalias@aerifal.cx>
Sat, 28 May 2011 22:36:30 +0000 (18:36 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 28 May 2011 22:36:30 +0000 (18:36 -0400)
commitc97f0d998cae23472ea30564663a8612dcfb6f83
tree3f18a824e04b327d6e0ec606934fdd5f7c863f87
parent3a17f757a80816961cd1fbf4664a5cbb02563b2d
initial implementation of posix_spawn

file actions are not yet implemented, but everything else should be
mostly complete and roughly correct.
13 files changed:
include/spawn.h [new file with mode: 0644]
src/process/posix_spawn.c [new file with mode: 0644]
src/process/posix_spawn_file_actions_destroy.c [new file with mode: 0644]
src/process/posix_spawn_file_actions_init.c [new file with mode: 0644]
src/process/posix_spawnattr_getflags.c [new file with mode: 0644]
src/process/posix_spawnattr_getpgroup.c [new file with mode: 0644]
src/process/posix_spawnattr_getsigdefault.c [new file with mode: 0644]
src/process/posix_spawnattr_getsigmask.c [new file with mode: 0644]
src/process/posix_spawnattr_setflags.c [new file with mode: 0644]
src/process/posix_spawnattr_setpgroup.c [new file with mode: 0644]
src/process/posix_spawnattr_setsigdefault.c [new file with mode: 0644]
src/process/posix_spawnattr_setsigmask.c [new file with mode: 0644]
src/process/posix_spawnp.c [new file with mode: 0644]