Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Last parameter to execl[e]() functions *must* be cast to a pointer. | 2016-03-17 | 1 | -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. | 2011-10-10 | 1 | -1/+2 | |
| | |||||
* | Test for the wait*() hang issue when SIGCHLD is ignored, as seen in | 2011-10-09 | 3 | -2/+39 | |
| | | | | the python's subprocess' test. | ||||
* | Add tests to check signal handling during pthread_join(3) and | 2011-10-01 | 6 | -0/+122 | |
pthread_mutex_lock(3). Currently failing. |