Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Pull in <sys/types.h> to get ssize_t or <stdint.h> to get uint32_t, instead of | miod | 2015-10-30 | 1 | -0/+1 |
| | | | | | relying upon previously included headers to do this, to enhance portability; from Pascal Cuoq, libressl github pull request #52 | ||||
* | remove non-portable __progname extern from arc4random unit test. | bcook | 2014-07-28 | 1 | -2/+1 |
| | | | | ok @deraadt | ||||
* | Minor cleanups | matthew | 2014-07-09 | 1 | -5/+12 |
| | | | | | | | | | | | | | Rename _waitpid() to safewaitpid() to avoid POSIX reserved identifier namespace. KNF nit: return value expressions should be surrounded by parentheses, per style(9). Ensure SIGCHLD is set to SIG_DFL, not SIG_IGN. POSIX allows (and requires under XSI) that terminated child processes not leave zombies if SIGCHLD is set to SIG_IGN, and it also allows execve() to leave SIGCHLD set to SIG_IGN. | ||||
* | check for EINTR when calling waitpid. | bcook | 2014-07-09 | 1 | -2/+13 |
| | | | | ok jsing@ | ||||
* | Add regress tests to make sure arc4random(3) is reinitialized | matthew | 2014-06-18 | 2 | -0/+178 |
correctly in fork children. |