aboutsummaryrefslogtreecommitdiff
path: root/src/process
AgeCommit message (Expand)AuthorFilesLines
2018-09-12reduce spurious inclusion of libc.hRich Felker5-5/+0
2018-09-12remove __vfork aliasRich Felker7-28/+7
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker2-4/+0
2018-09-12rework mechanism for posix_spawnp calling posix_spawnRich Felker2-19/+9
2018-09-12declare __syscall_ret as hidden in vfork asmRich Felker4-0/+4
2018-09-12add arm asm for vforkPatrick Oppenlander1-0/+13
2018-09-12move and deduplicate declarations of __procfdname to make it checkableRich Felker1-2/+0
2018-09-04implement fexecve in terms of execveat when it existsJoseph C. Sible1-0/+5
2018-08-28fix return value of system on failure to spawn child processRich Felker1-1/+1
2018-02-21convert execvp error handling to switch statementRich Felker1-2/+9
2018-02-21fix execvp failing on not-dir entries in PATH.Przemyslaw Pawelczyk1-1/+1
2017-11-10prevent fork's errno from being clobbered by atfork handlersBobby Bingham1-3/+3
2017-11-05adjust posix_spawn dup2 action behavior to match future requirementsRich Felker1-8/+12
2017-10-19posix_spawn: use larger stack to cover worst-case in execvpeWill Dietz1-1/+1
2017-04-22have posix_spawnattr_setflags check for supported flagsRich Felker1-0/+11
2017-04-22implement new posix_spawn flag POSIX_SPAWN_SETSIDRich Felker1-0/+4
2016-11-11add s390x portBobby Bingham1-0/+8
2015-06-16switch to using trap number 31 for syscalls on shRich Felker1-1/+1
2015-06-11add sh asm for vforkRich Felker1-0/+23
2015-04-13remove remnants of support for running in no-thread-pointer modeRich Felker1-1/+1
2015-04-10optimize out setting up robust list with kernel when not neededRich Felker1-1/+2
2015-02-03make execvp continue PATH search on EACCES rather than issuing an errrorRich Felker1-1/+4
2014-12-05use direct syscall rather than write function in posix_spawn childRich Felker1-1/+1
2014-12-05don't fail posix_spawn on failed closeRich Felker1-2/+1
2014-07-05eliminate use of cached pid from thread structureRich Felker1-1/+1
2014-07-01fix ungrammatical comment in posix_spawn codeRich Felker1-3/+3
2014-05-30additional fixes for linux kernel apis with old syscalls removedRich Felker1-0/+5
2014-05-29support linux kernel apis (new archs) with old syscalls removedRich Felker2-2/+21
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker1-2/+1
2014-04-20expose public execvpe interfaceM Farkas-Dyck1-0/+3
2014-03-24always initialize thread pointer at program startRich Felker1-3/+2
2014-02-23x32 port (diff against vanilla x86_64)rofl0r1-1/+1
2014-02-23import vanilla x86_64 code as x32rofl0r1-0/+12
2014-02-12make posix_spawn accept null pid pointer argumentsRich Felker1-1/+1
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy3-2/+2
2013-10-07add missing va_end in execl* for correcness and static code analyzersSzabolcs Nagy3-0/+3
2013-10-03fix new environment always being null with execleRich Felker1-2/+1
2013-08-09optimize posix_spawn to avoid spurious sigaction syscallsRich Felker1-7/+21
2013-08-09fix missing errno from exec failure in posix_spawnRich Felker1-0/+1
2013-08-08block signals during forkRich Felker1-0/+3
2013-08-02debloat code that depends on /proc/self/fd/%d with shared functionRich Felker1-3/+4
2013-07-17make posix_spawn (and functions that use it) use CLONE_VFORK flagRich Felker1-1/+2
2013-04-26remove explicit locking to prevent __synccall setuid during posix_spawnRich Felker1-13/+0
2013-03-24remove cruft from pre-posix_spawn version of the system functionRich Felker1-6/+0
2013-02-17consistently use the internal name __environ for environRich Felker2-4/+4
2013-02-03base system() on posix_spawnRich Felker1-41/+26
2013-02-03fix unsigned comparison bug in posix_spawnRich Felker1-1/+1
2013-02-03overhaul posix_spawn to use CLONE_VM instead of vforkRich Felker3-55/+125
2013-02-01fix up minor misplacement of restrict keyword in spawnattr sched stubsRich Felker1-2/+2
2012-11-11add support for thread scheduling (POSIX TPS option)Rich Felker1-0/+25