libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::Poller::PollEvent Struct Reference

A single poll event as returned by wait(). More...

#include <Poller.hxx>

+ Inheritance diagram for cosmos::Poller::PollEvent:

Public Member Functions

FileDescriptor fd () const
 The file descriptor this event refers to.
 
auto getEvents () const
 

Friends

class Poller
 

Detailed Description

A single poll event as returned by wait().

Definition at line 100 of file Poller.hxx.

Member Function Documentation

◆ fd()

FileDescriptor cosmos::Poller::PollEvent::fd ( ) const
inline

The file descriptor this event refers to.

Definition at line 105 of file Poller.hxx.

105{ return FileDescriptor{FileNum{(this->data).fd}}; }
FileNum
Primitive file descriptor.
Definition types.hxx:32
FileDescriptor fd() const
The file descriptor this event refers to.
Definition Poller.hxx:105

◆ getEvents()

auto cosmos::Poller::PollEvent::getEvents ( ) const
inline

Definition at line 107 of file Poller.hxx.

107{ return EventMask{static_cast<std::underlying_type<Event>::type>(this->events)}; }

Friends And Related Symbol Documentation

◆ Poller

friend class Poller
friend

Definition at line 101 of file Poller.hxx.


The documentation for this struct was generated from the following file: