about summary refs log tree commit diff
path: root/src/process/_Fork.c
Commit message (Collapse)AuthorAgeFilesLines
* move aio implementation details to a proper internal headerRich Felker2020-10-141-0/+1
| | | | | also fix the lack of declaration (and thus hidden visibility) in __stdio_close's use of __aio_close.
* implement _Fork and refactor fork using itRich Felker2020-10-141-9/+2
| | | | | | | the _Fork interface is defined for future issue of POSIX as the outcome of Austin Group issue 62, which drops the AS-safety requirement for fork, and provides an AS-safe replacement that does not run the registered atfork handlers.
* rename fork source fileRich Felker2020-10-141-0/+44
this is in preparation for implementing _Fork from POSIX-future, factored as a separate commit to improve readability of history.