1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* ISC license. */ #include <skalibs/sysdeps.h> #include <skalibs/iopause.h> #ifdef SKALIBS_HASPPOLL iopause_func_ref const iopause_ = &iopause_ppoll ; #else #include <skalibs/config.h> #if defined(SKALIBS_FLAG_PREFERSELECT) || defined(__APPLE__) iopause_func_ref const iopause_ = &iopause_select ; #else iopause_func_ref const iopause_ = &iopause_poll ; #endif #endif