Ver código fonte

LibC: Add POSIX spec comments for poll

Brian Gianforcaro 3 anos atrás
pai
commit
3c897d0443
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      Userland/Libraries/LibC/poll.cpp

+ 1 - 0
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;