| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | use vfork if possible in posix_spawn•••vfork is implemented as the fork syscall (with no atfork handlers run) on archs where it is not available, so this change does not introduce any change in behavior or regression for such archs. | Rich Felker | 2012-09-14 | 1 | -1/+3 |
| * | use restrict everywhere it's required by c99 and/or posix 2008•••to deal with the fact that the public headers may be used with pre-c99 compilers, __restrict is used in place of restrict, and defined appropriately for any supported compiler. we also avoid the form [restrict] since older versions of gcc rejected it due to a bug in the original c99 standard, and instead use the form *restrict. | Rich Felker | 2012-09-06 | 1 | -6/+6 |
| * | fix various errors in function signatures/prototypes found by nsz | Rich Felker | 2011-09-13 | 1 | -3/+5 |
| * | fix backwards posix_spawn file action order | Rich Felker | 2011-05-29 | 1 | -2/+3 |
| * | add file actions support to posix_spawn | Rich Felker | 2011-05-28 | 1 | -0/+28 |
| * | posix_spawn: honor POSIX_SPAWN_SETSIGDEF flag | Rich Felker | 2011-05-28 | 1 | -1/+3 |
| * | initial implementation of posix_spawn•••file actions are not yet implemented, but everything else should be mostly complete and roughly correct. | Rich Felker | 2011-05-28 | 1 | -0/+65 |
