| 287 | } |
| 288 | |
| 289 | static int |
| 290 | ff_sys_epoll_ctl(struct ff_epoll_ctl_args *args) |
| 291 | { |
| 292 | DEBUG_LOG("to run ff_epoll_ctl, epfd:%d, op:%d, fd:%d\n", |
| 293 | args->epfd, args->op, args->fd); |
| 294 | return ff_epoll_ctl(args->epfd, args->op, args->fd, |
| 295 | args->event); |
| 296 | } |
| 297 | |
| 298 | static int |
| 299 | ff_sys_epoll_wait(struct ff_epoll_wait_args *args) |
no test coverage detected