aboutsummaryrefslogtreecommitdiff
path: root/lib/libsys/aio_write.2
Commit message (Collapse)AuthorAgeFilesLines
* Bump .Dd for recently changed aio_*(2) manpagesEnji Cooper2025-03-281-1/+1
| | | | | | | | | | The ones that were effectively unchanged from d97e44784bb5a^..e24279e0f9e did not have `.Dd` bumped. Only the ones that had a net content change between those revisions. MFC after: 2 weeks MFC with: d97e44784bb5a e24279e0f9e
* Remove mentions of ENOSYS added in d97e44784bb5Enji Cooper2025-03-281-7/+0
| | | | | | | | | | | | | | | aio(4) is a hard requirement in the kernel as of f3215338ef82. The scenario that the patch was submitted for is no longer possible. This isn't a straight up revert since the previous change also addressed some minor issues. PR: 190942 Reported by: asomers MFC after: 2 weeks MFC with: d97e44784bb5 Fixes: d97e44784bb5 ("aio_*(2): mention ENOSYS under ERRORS") Differential Revision: https://reviews.freebsd.org/D49541
* aio_*(2): mention ENOSYS under ERRORSEnji Cooper2025-03-261-1/+10
| | | | | | | | | | | | | | | ENOSYS can occur if aio(4) is not loaded in the kernel. Document this behavior so consumers on FreeBSD can better understand that this is a possible scenario. Clean up the manpages slightly while here: - Sort `ERRORS` by errno(3). - Use `.Fx` instead of `FreeBSD`. MFC after: 2 weeks Reviewed by: ziaee PR: 190942 Differential Revision: https://reviews.freebsd.org/D49502
* Document aio_read2/aio_write2Konstantin Belousov2024-02-111-19/+59
| | | | | | | | Reviewed by: jhb Discussed with: asomers Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D43448
* libsys: relocate implementations and manpagesBrooks Davis2024-02-051-0/+249
Remove core system call implementations and documentation to lib/libsys and lib/libsys/<arch> from lib/libc/sys and lib/libc/<arch>/<sys>. Update paths to allow libc to find them in their new home. Reviewed by: kib, emaste, imp Pull Request: https://github.com/freebsd/freebsd-src/pull/908