| 408 | } |
| 409 | |
| 410 | static int |
| 411 | ff_sys_select(struct ff_select_args *args) |
| 412 | { |
| 413 | int ret; |
| 414 | struct timeval no_block_time = {0, 0}; |
| 415 | |
| 416 | DEBUG_LOG("to run ff_sys_select, nfds:%d\n", args->nfds); |
| 417 | ret = ff_select(args->nfds, args->readfds, args->writefds, args->exceptfds, &no_block_time); |
| 418 | |
| 419 | return ret; |
| 420 | } |
| 421 | |
| 422 | static int |
| 423 | ff_so_handler(int ops, void *args) |
no test coverage detected