poll method

int poll(
  1. Pointer<pollfd> __fds,
  2. int __nfds,
  3. int __timeout
)

Implementation

int poll(
  ffi.Pointer<pollfd> __fds,
  int __nfds,
  int __timeout,
) {
  return _poll(
    __fds,
    __nfds,
    __timeout,
  );
}