[clang-format] Rename ExportBlockIndentation -> IndentExportBlock (#123493)
[llvm-project.git] / libc / include / sys / epoll.yaml
blob996eb785bc715eb055253c8bf2ff2d87d9409257
1 header: sys/epoll.h
2 header_template: epoll.h.def
3 macros: []
4 types:
5   - type_name: struct_epoll_event
6   - type_name: struct_epoll_data
7   - type_name: sigset_t
8   - type_name: struct_timespec
9 enums: []
10 objects: []
11 functions:
12   - name: epoll_create
13     standards:
14       - Linux
15     return_type: int
16     arguments:
17       - type: int
18   - name: epoll_create1
19     standards:
20       - Linux
21     return_type: int
22     arguments:
23       - type: int
24   - name: epoll_ctl
25     standards:
26       - Linux
27     return_type: int
28     arguments:
29       - type: int
30       - type: int
31       - type: int
32       - type: struct epoll_event *
33   - name: epoll_pwait
34     standards:
35       - Linux
36     return_type: int
37     arguments:
38       - type: int
39       - type: struct epoll_event *
40       - type: int
41       - type: int
42       - type: const sigset_t *
43   - name: epoll_pwait2
44     standards:
45       - Linux
46     return_type: int
47     arguments:
48       - type: int
49       - type: struct epoll_event *
50       - type: int
51       - type: const struct timespec *
52       - type: const sigset_t *
53   - name: epoll_wait
54     standards:
55       - Linux
56     return_type: int
57     arguments:
58       - type: int
59       - type: struct epoll_event *
60       - type: int
61       - type: int