Return child exit status through ProcStuff.
[dragonfly.git] / usr.bin / make / job.c
2005-07-13 Max OkumotoReturn child exit status through ProcStuff.
2005-07-13 Max Okumotocleanup some spelling errors
2005-07-13 Max OkumotoMove mkfifio(), and FILENO() into util.c
2005-07-13 Max OkumotoMove common code that executes the comands associated...
2005-07-12 Simon SchubertMerge from vendor branch OPENSSH:
2005-07-11 Simon SchubertMerge from vendor branch OPENSSH:
2005-07-08 Joerg SonnenbergerMerge from vendor branch OPENPAM:
2005-07-07 Simon SchubertMerge from vendor branch OPENSSL:
2005-07-06 Joerg SonnenbergerMerge from vendor branch FILE:
2005-07-02 Max OkumotoMove code in Proc_Setupsignals() into Proc_Init().
2005-07-02 Max OkumotoReduce usage of commandShell global by adding a shell...
2005-07-02 Max OkumotoReduce usage of commandShell global by assigning it...
2005-07-02 Max OkumotoPass commandShell is a paramter to Proc_Exec() instead of
2005-06-29 Simon SchubertMerge from vendor branch BZIP:
2005-06-21 Max Okumotofix comments
2005-06-21 Max OkumotoMove code from main into subroutine.
2005-06-19 Joerg SonnenbergerMerge from vendor branch GCC:
2005-06-16 Max OkumotoRenamed ProcExec() to Proc_Exec() to follow code conven...
2005-06-16 Max OkumotoFreeBSD-Date: 2005/05/24 14:14:23
2005-06-16 Max OkumotoUse new meta and builtins fields, to process command...
2005-06-15 Max OkumotoBetter function description for Compat_RunCommand()
2005-06-13 Simon SchubertMerge from vendor branch CVS:
2005-06-06 Gregory Neil ShapiroMerge from vendor branch SENDMAIL:
2005-06-05 Simon SchubertMerge from vendor branch GCC:
2005-06-01 Joerg SonnenbergerMerge from vendor branch FILE:
2005-05-24 Joerg SonnenbergerMerge from vendor branch GCC:
2005-05-24 Joerg SonnenbergerMerge from vendor branch GCC:
2005-05-23 Max Okumotoo Remove out of date comment about Compat_Init()
2005-05-23 Max OkumotoPass queryFlag as a function paramter instead of a...
2005-05-23 Max OkumotoPass ENDNode as a function parameter instead of using...
2005-05-23 Max OkumotoMove signal handler setup code into its own function...
2005-05-23 Max OkumotoMove ProcExec() into proc.c
2005-05-23 Max OkumotoSome comment header and whitespace cleanups.
2005-05-20 Max OkumotoGet rid of shellPath global by adding another field...
2005-05-19 Max Okumoto2nd Try. The correct version.
2005-05-19 Max OkumotoRevert patch on 2005/05/19 17:53:58 it was the wrong...
2005-05-19 Max OkumotoMove shell code out of job.c into shell.[ch]
2005-05-19 Max OkumotoMove RLIMIT_NOFILE code into Proc_Init()
2005-05-16 Max OkumotoConstify the result of Var_Value().
2005-05-16 Max Okumotopatch-7.278
2005-05-15 Max OkumotoFreeBSD-Date: 2005/05/13 07:31:45
2005-05-14 Max OkumotoFreeBSD-Date: 2005/05/12 17:40:16
2005-05-14 Max OkumotoFreeBSD-Date: 2005/05/12 15:16:44
2005-05-14 Max OkumotoUse strpbrk() instead of array to match characters...
2005-05-14 Max OkumotoRemove extranious blankline.
2005-05-14 Max OkumotoFix spelling error.
2005-05-14 Max OkumotoConstify ProcExec()
2005-05-11 Joerg SonnenbergerMerge from vendor branch GCC:
2005-05-07 Simon SchubertFix compilation with gcc40: Make `padchar' char *,...
2005-05-05 Max OkumotoCleanup globals in str.c
2005-05-05 Max Okumotouse waitpid() instead of wait()
2005-05-05 Max OkumotoJob_ParseShell()
2005-05-03 Joerg SonnenbergerMerge from vendor branch LIBARCHIVE:
2005-05-03 Joerg SonnenbergerMerge from vendor branch BSDTAR:
2005-04-28 Max OkumotoHandle longjmp(), vfork() warning message about variables.
2005-04-28 Max Okumotogot rid of mktemp() warning.
2005-04-28 Max OkumotoThe first element of the array return by brk_string...
2005-04-28 Max OkumotoCleanup main()
2005-04-28 Max Okumotoremove prototype for Compat_RunCommand() and make it...
2005-04-28 Max Okumotocleanup middle part of JobFinish()
2005-04-28 Max OkumotoCleanup code near the top part of JobFinish()
2005-04-28 Max OkumotoMove comments to the proper section, and removed some...
2005-04-28 Max OkumotoConvert Compat_RunCommand() to use ProcWait()
2005-04-26 Max OkumotoCreate ProcWait(), like ProcExec() this is a wraper...
2005-04-26 Max OkumotoSet close-on-exec on output side of pipe.
2005-04-26 Max Okumotoinline shellneed()
2005-04-26 Max OkumotoAllocate space for arguments, and free them after vfork().
2005-04-26 Max OkumotoMove initilization of ProcStuff before vfork().
2005-04-26 Max OkumotoPass argv using ProcStuff.
2005-04-26 Max OkumotoDoc struct ProStuff fields.
2005-04-26 Max OkumotoMove redirection of stderr into ProcExec().
2005-04-25 Max OkumotoRemoved duplicate static variable, created when I merge...
2005-04-24 Max OkumotoMove redirection of stdin into ProcExec().
2005-04-24 Max OkumotoMove redirection of stdout into ProcExec().
2005-04-24 Max OkumotoMoved manupulation of close-on-exec flags on std{in...
2005-04-24 Max OkumotoUse a temp variable to move dups2() out of conditional.
2005-04-24 Max OkumotoMove clearing of close-on-exec of both stdin, stdout...
2005-04-24 Max OkumotoMoved execvp() into ProcExec().
2005-04-24 Max OkumotoMove redirection of stderr into ProcExec().
2005-04-24 Max OkumotoMove common exec code into a ProcExec().
2005-04-24 Max OkumotoRevert using execl(), it makes it difficult to extract...
2005-04-22 Max Okumotoremove spaces before tabs in this file
2005-04-22 Max Okumotouse execl() instead of execv() so we can reduce the...
2005-04-22 Max OkumotoMake shellName and shellPath static to job.c
2005-04-22 Max OkumotoMake the three version of the fork code more uniform.
2005-04-21 Max Okumotomove defines from job.h into job.c since nothing else...
2005-04-21 Max OkumotoMerge compat.[ch] into job.[ch]
2005-04-21 Max OkumotoMove Cmd_Exec() from main.c to job.c
2005-04-21 Jeroen Ruigrok/asmodaiMerge from vendor branch GPERF:
2005-04-21 Jeroen Ruigrok/asmodaiMerge from vendor branch CVS:
2005-04-19 Joerg SonnenbergerMerge from vendor branch NTPD:
2005-04-19 Joerg SonnenbergerMerge from vendor branch NTPD:
2005-04-18 Joerg SonnenbergerMerge from vendor branch NTPD:
2005-04-16 Max Okumotopatch-7.184
2005-04-14 Joerg SonnenbergerMerge from vendor branch NTPD:
2005-04-09 Max OkumotoFreeBSD-Date: 2005/04/07 12:26:15
2005-04-07 Max OkumotoDate: 2005/04/01 16:24:25
2005-04-07 Max OkumotoFreeBSD-Date: 2005/04/01 13:35:35
2005-04-07 Max OkumotoFreeBSD-Date: 2005/04/01 10:53:43
2005-03-29 David RhodusMerge from vendor branch HEIMDAL:
next