summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-12-20 01:26:27 -0800
committerBrian Gianforcaro <b.gianfo@gmail.com>2021-12-21 18:16:48 -0800
commit3c897d044303c203e04ffe6310615d51f82091c8 (patch)
treee463e22470a542c0111081cb866fd128ff35e3d8 /Userland
parent954fa724b3407f1cd1bd9f5d24611b899835f96e (diff)
downloadserenity-3c897d044303c203e04ffe6310615d51f82091c8.zip
LibC: Add POSIX spec comments for poll
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibC/poll.cpp1
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;