forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathepoll.yaml
61 lines (61 loc) · 1.19 KB
/
epoll.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
header: sys/epoll.h
header_template: epoll.h.def
macros: []
types:
- type_name: struct_epoll_event
- type_name: struct_epoll_data
- type_name: sigset_t
- type_name: struct_timespec
enums: []
objects: []
functions:
- name: epoll_create
standards:
- Linux
return_type: int
arguments:
- type: int
- name: epoll_create1
standards:
- Linux
return_type: int
arguments:
- type: int
- name: epoll_ctl
standards:
- Linux
return_type: int
arguments:
- type: int
- type: int
- type: int
- type: struct epoll_event *
- name: epoll_pwait
standards:
- Linux
return_type: int
arguments:
- type: int
- type: struct epoll_event *
- type: int
- type: int
- type: const sigset_t *
- name: epoll_pwait2
standards:
- Linux
return_type: int
arguments:
- type: int
- type: struct epoll_event *
- type: int
- type: const struct timespec *
- type: const sigset_t *
- name: epoll_wait
standards:
- Linux
return_type: int
arguments:
- type: int
- type: struct epoll_event *
- type: int
- type: int