Skip to the content.

Home / cs-notes / Operating System / Linux / Syscalls / select / pselect

int pselect(
    int nfds, 
    fd_set *readfds, 
    fd_set *writefds,
    fd_set *exceptfds, 
    const struct timespec *timeout,
    const sigset_t *sigmask);
struct timespec {
        time_t   tv_sec;        /* seconds */
        long     tv_nsec;       /* nanoseconds */
};

与 select 区别