summaryrefslogtreecommitdiffstats
path: root/regress/lib/libpthread/signals (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-093-2/+39
| | | | the python's subprocess' test.
* Add tests to check signal handling during pthread_join(3) andfgsch2011-10-016-0/+122
pthread_mutex_lock(3). Currently failing.