aboutsummaryrefslogtreecommitdiff
path: root/lib/libsys/poll.2
Commit message (Collapse)AuthorAgeFilesLines
* Tweak ppoll() to include 1003.1-2024 visibility, take twoKyle Evans2024-12-151-2/+3
| | | | | | | | Note in the manpage that the 2024 edition finally added ppoll(), and also add the appropriate declarations for the correct versions of _POSIX_C_SOURCE (via __POSIX_VISIBLE). Differential Revision: https://reviews.freebsd.org/D48043
* Revert "Tweak ppoll() to include 1003.1-2024 visibility"Kyle Evans2024-12-141-3/+2
| | | | | | This reverts commit 212d7f439aa3fa276e87291c1e83545298381824. A last minute change to remove __BSD_VISIBLE unearthed some breakage that I failed to re-test. Sigh.
* Tweak ppoll() to include 1003.1-2024 visibilityKyle Evans2024-12-141-2/+3
| | | | | | | | Note in the manpage that the 2024 edition finally added ppoll(), and also add the appropriate declarations for the correct versions of _POSIX_C_SOURCE. Differential Revision: https://reviews.freebsd.org/D48043
* ppoll(2) was actually added in 10.2David E. O'Brien2024-06-231-1/+1
|
* libsys: relocate implementations and manpagesBrooks Davis2024-02-051-0/+293
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