doc: epoll_create() size argument must be greater than zero

This commit is contained in:
Bert Belder 2017-12-03 23:40:29 +01:00
parent 3e3d414637
commit 712eaab58b

View File

@ -61,7 +61,7 @@ HANDLE epoll_create1(int flags);
```
* Create a new epoll instance (port).
* `size` is ignored but most be nonzero.
* `size` is ignored but most be greater than zero.
* `flags` must be zero as there are no supported flags.
* Returns `INVALID_HANDLE_VALUE` on failure.
* [man page](http://man7.org/linux/man-pages/man2/epoll_create.2.html)