Skip to content

Commit

Permalink
event/EpollEvents: add mapping for EPOLLPRI
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Jul 12, 2024
1 parent 0614f4e commit e4f4245
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/event/EpollEvents.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

struct EpollEvents {
static constexpr unsigned READ = EPOLLIN;
static constexpr unsigned EXCEPTIONAL = EPOLLPRI;
static constexpr unsigned WRITE = EPOLLOUT;
static constexpr unsigned ERROR = EPOLLERR;
static constexpr unsigned HANGUP = EPOLLHUP;
Expand Down

0 comments on commit e4f4245

Please sign in to comment.