• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1header: sys-epoll.h
2macros: []
3types:
4  - type_name: struct_epoll_event
5  - type_name: struct_epoll_data
6  - type_name: sigset_t
7  - type_name: struct_timespec
8enums: []
9objects: []
10functions:
11  - name: epoll_create
12    standards:
13      - Linux
14    return_type: int
15    arguments:
16      - type: int
17  - name: epoll_create1
18    standards:
19      - Linux
20    return_type: int
21    arguments:
22      - type: int
23  - name: epoll_ctl
24    standards:
25      - Linux
26    return_type: int
27    arguments:
28      - type: int
29      - type: int
30      - type: int
31      - type: struct epoll_event *
32  - name: epoll_pwait
33    standards:
34      - Linux
35    return_type: int
36    arguments:
37      - type: int
38      - type: struct epoll_event *
39      - type: int
40      - type: int
41      - type: const sigset_t *
42  - name: epoll_pwait2
43    standards:
44      - Linux
45    return_type: int
46    arguments:
47      - type: int
48      - type: struct epoll_event *
49      - type: int
50      - type: const struct timespec *
51      - type: const sigset_t *
52  - name: epoll_wait
53    standards:
54      - Linux
55    return_type: int
56    arguments:
57      - type: int
58      - type: struct epoll_event *
59      - type: int
60      - type: int
61