2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/error/RuntimeError.hxx>
4#include <cosmos/io/EventFile.hxx>
5#include <cosmos/utils.hxx>
9EventFile::EventFile(
const Counter initval,
const Flags flags) {
10 auto fd = ::eventfd(to_integral(initval), flags.raw());
13 cosmos_throw (ApiError(
"eventfd()"));
23 const auto bytes = this->
read(&ret,
sizeof(
Counter));
25 if (bytes !=
sizeof(ret)) {
33 const auto bytes = this->
write(&increment,
sizeof(increment));
35 if (bytes !=
sizeof(increment)) {
Counter wait()
Wait for the counter to become non-zero.
Counter
Strong counter type used with the event fd.
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
void signal(const Counter increment=Counter{1})
Signal the eventfd by adding the given value to the counter.
void open(const FileDescriptor fd, const AutoCloseFD auto_close)
Takes the already open file descriptor fd and operates on it.
Exception type for generic runtime errors.
size_t read(void *buf, size_t length)
Read up to length bytes from the file into buf.
size_t write(const void *buf, size_t length)
Write up to length bytes from buf into the underlying file.
NamedBool< struct close_file_t, true > AutoCloseFD
Strong boolean type for expressing the responsibility to close file descriptors.
FileNum
Primitive file descriptor.