-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathepoll.nelua
46 lines (46 loc) · 1.64 KB
/
epoll.nelua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## cinclude '<sys/epoll.h>'
global __sigset_t: type <cimport,nodecl> = @record{
__val: [16]culong
}
global timespec: type <cimport,nodecl,ctypedef> = @record{
tv_sec: ctime_t,
tv_nsec: clong
}
global EPOLL_CLOEXEC: cint <comptime> = 524288
global EPOLL_EVENTS: type <cimport,nodecl,using,ctypedef> = @enum(cuint){
EPOLLIN = 1,
EPOLLPRI = 2,
EPOLLOUT = 4,
EPOLLRDNORM = 64,
EPOLLRDBAND = 128,
EPOLLWRNORM = 256,
EPOLLWRBAND = 512,
EPOLLMSG = 1024,
EPOLLERR = 8,
EPOLLHUP = 16,
EPOLLRDHUP = 8192,
EPOLLEXCLUSIVE = 268435456,
EPOLLWAKEUP = 536870912,
EPOLLONESHOT = 1073741824,
EPOLLET = 2147483648
}
global epoll_data: type <cimport,nodecl,ctypedef> = @union{
ptr: pointer,
fd: cint,
u32: uint32,
u64: uint64
}
global epoll_data_t: type = @epoll_data
global epoll_event: type <cimport,nodecl,packed,ctypedef> = @record{
events: uint32,
data: epoll_data_t
}
global function epoll_create(size: cint): cint <cimport,nodecl> end
global function epoll_create1(flags: cint): cint <cimport,nodecl> end
global function epoll_ctl(epfd: cint, op: cint, fd: cint, event: *epoll_event): cint <cimport,nodecl> end
global function epoll_wait(epfd: cint, events: *epoll_event, maxevents: cint, timeout: cint): cint <cimport,nodecl> end
global function epoll_pwait(epfd: cint, events: *epoll_event, maxevents: cint, timeout: cint, ss: *__sigset_t): cint <cimport,nodecl> end
global function epoll_pwait2(epfd: cint, events: *epoll_event, maxevents: cint, timeout: *timespec, ss: *__sigset_t): cint <cimport,nodecl> end
global EPOLL_CTL_ADD: cint <comptime> = 1
global EPOLL_CTL_DEL: cint <comptime> = 2
global EPOLL_CTL_MOD: cint <comptime> = 3