1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00

LibC: Add POSIX spec comments for poll

This commit is contained in:
Brian Gianforcaro 2021-12-20 01:26:27 -08:00 committed by Brian Gianforcaro
parent 954fa724b3
commit 3c897d0443

View file

@ -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;