ladybird/Userland/Libraries/LibC/poll.cpp
Brian Gianforcaro 1682f0b760 Everything: Move to SPDX license identifiers in all files.
SPDX License Identifiers are a more compact / standardized
way of representing file license information.

See: https://spdx.dev/resources/use/#identifiers

This was done with the `ambr` search and replace tool.

 ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-22 11:22:27 +02:00

32 lines
751 B
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <errno.h>
#include <poll.h>
#include <sys/time.h>
#include <syscall.h>
extern "C" {
int poll(pollfd* fds, nfds_t nfds, int timeout_ms)
{
timespec timeout;
timespec* timeout_ts = &timeout;
if (timeout_ms < 0)
timeout_ts = nullptr;
else
timeout = { timeout_ms / 1000, (timeout_ms % 1000) * 1'000'000 };
return ppoll(fds, nfds, timeout_ts, nullptr);
}
int ppoll(pollfd* fds, nfds_t nfds, const timespec* timeout, const sigset_t* sigmask)
{
Syscall::SC_poll_params params { fds, nfds, timeout, sigmask };
int rc = syscall(SC_poll, &params);
__RETURN_WITH_ERRNO(rc, rc, -1);
}
}