MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ff_sys_select

Function ff_sys_select

adapter/syscall/ff_socket_ops.c:410–420  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

408}
409
410static int
411ff_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
422static int
423ff_so_handler(int ops, void *args)

Callers 1

ff_so_handlerFunction · 0.85

Calls 1

ff_selectFunction · 0.85

Tested by

no test coverage detected