diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-12-20 01:26:27 -0800 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-12-21 18:16:48 -0800 |
commit | 3c897d044303c203e04ffe6310615d51f82091c8 (patch) | |
tree | e463e22470a542c0111081cb866fd128ff35e3d8 /Userland | |
parent | 954fa724b3407f1cd1bd9f5d24611b899835f96e (diff) | |
download | serenity-3c897d044303c203e04ffe6310615d51f82091c8.zip |
LibC: Add POSIX spec comments for poll
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibC/poll.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/poll.cpp b/Userland/Libraries/LibC/poll.cpp index 11ef099ee2..8b5f5605f1 100644 --- a/Userland/Libraries/LibC/poll.cpp +++ b/Userland/Libraries/LibC/poll.cpp @@ -11,6 +11,7 @@ extern "C" { +// https://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html int poll(pollfd* fds, nfds_t nfds, int timeout_ms) { timespec timeout; |