about summary refs log tree commit diff
path: root/src/process/posix_spawn.c
Commit message (Expand)AuthorAgeFilesLines
* use direct syscall rather than write function in posix_spawn childRich Felker2014-12-051-1/+1
* don't fail posix_spawn on failed closeRich Felker2014-12-051-2/+1
* fix ungrammatical comment in posix_spawn codeRich Felker2014-07-011-3/+3
* support linux kernel apis (new archs) with old syscalls removedRich Felker2014-05-291-2/+16
* support kernels with no SYS_open syscall, only SYS_openatRich Felker2014-05-241-2/+1
* make posix_spawn accept null pid pointer argumentsRich Felker2014-02-121-1/+1
* optimize posix_spawn to avoid spurious sigaction syscallsRich Felker2013-08-091-7/+21
* fix missing errno from exec failure in posix_spawnRich Felker2013-08-091-0/+1
* make posix_spawn (and functions that use it) use CLONE_VFORK flagRich Felker2013-07-171-1/+2
* remove explicit locking to prevent __synccall setuid during posix_spawnRich Felker2013-04-261-13/+0
* fix unsigned comparison bug in posix_spawnRich Felker2013-02-031-1/+1
* overhaul posix_spawn to use CLONE_VM instead of vforkRich Felker2013-02-031-52/+122
* fix usage of locks with vforkRich Felker2012-10-191-1/+1
* fix parent-memory-clobber in posix_spawn (environ)Rich Felker2012-10-181-4/+3
* overhaul system() and popen() to use vfork; fix various related bugsRich Felker2012-10-181-6/+7
* block uid/gid changes during posix_spawnRich Felker2012-10-151-0/+10
* use vfork if possible in posix_spawnRich Felker2012-09-141-1/+3
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-061-6/+6
* fix various errors in function signatures/prototypes found by nszRich Felker2011-09-131-3/+5
* fix backwards posix_spawn file action orderRich Felker2011-05-291-2/+3
* add file actions support to posix_spawnRich Felker2011-05-281-0/+28
* posix_spawn: honor POSIX_SPAWN_SETSIGDEF flagRich Felker2011-05-281-1/+3
* initial implementation of posix_spawnRich Felker2011-05-281-0/+65