62 lines · yaml
1header: sys/epoll.h2header_template: epoll.h.def3macros: []4types:5 - type_name: struct_epoll_event6 - type_name: struct_epoll_data7 - type_name: sigset_t8 - type_name: struct_timespec9enums: []10objects: []11functions:12 - name: epoll_create13 standards:14 - Linux15 return_type: int16 arguments:17 - type: int18 - name: epoll_create119 standards:20 - Linux21 return_type: int22 arguments:23 - type: int24 - name: epoll_ctl25 standards:26 - Linux27 return_type: int28 arguments:29 - type: int30 - type: int31 - type: int32 - type: struct epoll_event *33 - name: epoll_pwait34 standards:35 - Linux36 return_type: int37 arguments:38 - type: int39 - type: struct epoll_event *40 - type: int41 - type: int42 - type: const sigset_t *43 - name: epoll_pwait244 standards:45 - Linux46 return_type: int47 arguments:48 - type: int49 - type: struct epoll_event *50 - type: int51 - type: const struct timespec *52 - type: const sigset_t *53 - name: epoll_wait54 standards:55 - Linux56 return_type: int57 arguments:58 - type: int59 - type: struct epoll_event *60 - type: int61 - type: int62