event/EpollEvents: add mapping for EPOLLPRI

This commit is contained in:
Max Kellermann 2024-05-29 09:52:28 +02:00 committed by Max Kellermann
parent cd64f9c422
commit abb23ba894
1 changed files with 1 additions and 0 deletions

View File

@ -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;