[Overview][Constants][Types][Procedures and functions] |
Create new epoll file descriptor
Source position: linux.pp line 140
function epoll_create( |
size: cint |
):cint; |
epoll_createcreates a new epoll file descriptor. The sizeargument indicates to the kernel approximately how many structures should be allocated, but is by no means an upper limit.
On success, a file descriptor is returned that can be used in subsequent epoll_ctlor epoll_waitcalls, and should be closed using the fpClosecall.
On error, -1 is returned, and errnois set.
|
Modify an epoll file descriptor |
|
|
Wait for an event on an epoll file descriptor. |
|
|
Close file descriptor |