Removed pointless enum and tidied comments
This commit is contained in:
@@ -7,14 +7,8 @@
|
||||
|
||||
namespace Bloom
|
||||
{
|
||||
enum class EpollEvent: std::uint16_t
|
||||
{
|
||||
READ_READY = EPOLL_EVENTS::EPOLLIN,
|
||||
WRITE_READY = EPOLL_EVENTS::EPOLLOUT,
|
||||
};
|
||||
|
||||
/**
|
||||
* The EpollInstance class is an RAII wrapper for a single Linux epoll instance.
|
||||
* RAII wrapper for an epoll instance.
|
||||
*
|
||||
* See https://man7.org/linux/man-pages/man7/epoll.7.html for more on the Linux epoll API.
|
||||
*/
|
||||
|
||||
@@ -7,9 +7,7 @@
|
||||
namespace Bloom
|
||||
{
|
||||
/**
|
||||
* The EventFdNotifier class is an RAII wrapper for a Linux eventfd object.
|
||||
*
|
||||
* It uses an eventfd object to implement the NotifierInterface.
|
||||
* RAII wrapper for a Linux eventfd object, used to implement the NotifierInterface.
|
||||
*/
|
||||
class EventFdNotifier: public NotifierInterface
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user