summaryrefslogtreecommitdiff
path: root/src/process/posix_spawn.c
AgeCommit message (Expand)AuthorLines
2019-07-08prevent dup2 action for posix_spawn internal pipe fdRich Felker-0/+4
2018-09-12reduce spurious inclusion of libc.hRich Felker-1/+0
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker-2/+0
2018-09-12rework mechanism for posix_spawnp calling posix_spawnRich Felker-13/+5
2017-11-05adjust posix_spawn dup2 action behavior to match future requirementsRich Felker-8/+12
2017-10-19posix_spawn: use larger stack to cover worst-case in execvpeWill Dietz-1/+1
2017-04-22implement new posix_spawn flag POSIX_SPAWN_SETSIDRich Felker-0/+4
2014-12-05use direct syscall rather than write function in posix_spawn childRich Felker-1/+1
2014-12-05don't fail posix_spawn on failed closeRich Felker-2/+1
2014-07-01fix ungrammatical comment in posix_spawn codeRich Felker-3/+3
2014-05-29support linux kernel apis (new archs) with old syscalls removedRich Felker-2/+16
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker-2/+1
2014-02-12make posix_spawn accept null pid pointer argumentsRich Felker-1/+1
2013-08-09optimize posix_spawn to avoid spurious sigaction syscallsRich Felker-7/+21
2013-08-09fix missing errno from exec failure in posix_spawnRich Felker-0/+1
2013-07-17make posix_spawn (and functions that use it) use CLONE_VFORK flagRich Felker-1/+2
2013-04-26remove explicit locking to prevent __synccall setuid during posix_spawnRich Felker-13/+0
2013-02-03fix unsigned comparison bug in posix_spawnRich Felker-1/+1
2013-02-03overhaul posix_spawn to use CLONE_VM instead of vforkRich Felker-52/+122
2012-10-19fix usage of locks with vforkRich Felker-1/+1
2012-10-18fix parent-memory-clobber in posix_spawn (environ)Rich Felker-4/+3
2012-10-18overhaul system() and popen() to use vfork; fix various related bugsRich Felker-6/+7
2012-10-15block uid/gid changes during posix_spawnRich Felker-0/+10
2012-09-14use vfork if possible in posix_spawnRich Felker-1/+3
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-6/+6
2011-09-13fix various errors in function signatures/prototypes found by nszRich Felker-3/+5
2011-05-29fix backwards posix_spawn file action orderRich Felker-2/+3
2011-05-28add file actions support to posix_spawnRich Felker-0/+28
2011-05-28posix_spawn: honor POSIX_SPAWN_SETSIGDEF flagRich Felker-1/+3
2011-05-28initial implementation of posix_spawnRich Felker-0/+65