Skip to the content.

Home / cs-notes / Operating System / Linux / Syscalls / poll / pollfd

struct pollfd {
    int   fd;         /* file descriptor */
    short events;     /* requested events */
    short revents;    /* returned events */
};