chao.an b89737395b vfs/epoll: add epoll_create1(2) implement
Linux Programmer's Manual

NAME
       epoll_create, epoll_create1 - open an epoll file descriptor

...
SYNOPSIS
       #include <sys/epoll.h>

       int epoll_create1(int flags);
...

   epoll_create1()
       If flags is 0, then, other than the fact that the obsolete
       size argument is dropped, epoll_create1() is the same as
       epoll_create(). The following value can be included in flags
       to obtain different behavior:

       EPOLL_CLOEXEC
              Set the close-on-exec (FD_CLOEXEC) flag on the new file
              descriptor. See the description of the O_CLOEXEC flag in
              open(2) for reasons why this may be useful.

https://man7.org/linux/man-pages/man7/epoll.7.html
2020-08-17 23:41:13 -05:00
..
2020-05-03 12:15:54 -06:00
2020-06-24 13:48:41 +01:00
2020-06-30 13:09:58 -06:00
2020-01-02 10:54:43 -06:00
2020-05-03 12:15:54 -06:00
2020-05-17 14:01:00 -03:00
2020-01-02 10:54:43 -06:00
2020-01-02 10:54:43 -06:00
2020-07-01 11:58:12 +02:00
2020-06-15 08:07:19 -06:00