Searched refs:rb_fd_select (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Dintern.h296 int rb_fd_select(int, rb_fdset_t *, rb_fdset_t *, rb_fdset_t *, struct timeval *);
318 #define rb_fd_select(n, rfds, wfds, efds, timeout) rb_w32_select((n), (rfds) ? ((rb_fdset_t*)(rfds))->fdset : NULL, (wfds) ? ((rb_fdset_t*)(wfds))->fdset : NULL, (efds) ? ((rb_fdset_t*)(efds))->fdset: NULL, (timeout)) macro
339 #define rb_fd_select(n, rfds, wfds, efds, timeout) select((n), (rfds), (wfds), (efds), (timeout)) macro
/macosx-10.10.1/ruby-106/ruby/
H A Dthread_pthread.c963 return rb_fd_select(n, readfds, writefds, exceptfds, timeout);
H A Dthread.c3235 rb_fd_select(int n, rb_fdset_t *readfds, rb_fdset_t *writefds, rb_fdset_t *exceptfds, struct timeval *timeout) function
H A Dio.c9678 return rb_fd_select(n, rfds, wfds, efds, timeout);
9708 ret = rb_fd_select(rb_fd_max(&stp->fds), NULL, &stp->fds, NULL, NULL);

Completed in 104 milliseconds