2#include <cosmos/dso_export.h>
3#include <cosmos/error/ApiError.hxx>
4#include <cosmos/error/RuntimeError.hxx>
5#include <cosmos/formatting.hxx>
6#include <cosmos/private/cosmos.hxx>
7#include <cosmos/time/TimerFD.hxx>
8#include <cosmos/utils.hxx>
12template <ClockType CLOCK>
16 if (
auto fd = timerfd_create(to_integral(CLOCK), flags.
raw());
FileNum{fd} != FileNum::INVALID) {
21 cosmos_throw (
ApiError(
"timerfd_create()"));
24template <ClockType CLOCK>
28 if (
auto res = timerfd_gettime(to_integral(m_fd.raw()), &ret); res != 0) {
29 cosmos_throw (
ApiError(
"timerfd_gettime()"));
35template <ClockType CLOCK>
38 to_integral(m_fd.raw()),
45 cosmos_throw (
ApiError(
"timerfd_settime()"));
48template <ClockType CLOCK>
52 const auto bytes = this->read(
reinterpret_cast<void*
>(&ret),
sizeof(ret));
56 if (bytes !=
sizeof(ret)) {
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
Thin Wrapper around OS file descriptors.
Exception type for generic runtime errors.
Timers that notify via file descriptors.
uint64_t wait()
Waits on the timer returning the tick count.
TimerSpec getTime() const
Returns the current timer settings from the kernel.
void setTime(const TimerSpec spec, const StartFlags flags=StartFlags{})
Arm the timer using the given settings and flags.
void create(const CreateFlags flags=CreateFlags{CreateFlag::CLOEXEC})
Creates a new timer fd using the given flags.
FileNum
Primitive file descriptor.
Combined start time and repeat interval for a TimerFD setting.