summaryrefslogtreecommitdiffstats
path: root/regress/lib/libpthread/signals/ignore_sigchild (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Last parameter to execl[e]() functions *must* be cast to a pointer.krw2016-03-171-2/+2
| | | | | | | | | | | | Just NULL is not good practise as NULL is theoretically allowed to be an integer rather than a pointer. Use (char *)NULL consistently instead of scattering a few (char *)0 and (void *)NULL into the mix. Prompted by and probably ok deraadt@ millert@ kettenis@ Definitely ok mestre@ ratchov@
* allow for this to timeout rather than hanging forever.fgsch2011-10-101-1/+2
|
* Test for the wait*() hang issue when SIGCHLD is ignored, as seen infgsch2011-10-092-0/+37
the python's subprocess' test.