io_queue_wait.c 1.0 KB

123456789101112131415161718192021222324252627282930
  1. /* io_submit
  2. libaio Linux async I/O interface
  3. Copyright 2002 Red Hat, Inc.
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. */
  16. #define NO_SYSCALL_ERRNO
  17. #include <sys/types.h>
  18. #include <libaio.h>
  19. #include <errno.h>
  20. #include "syscall.h"
  21. struct timespec;
  22. int io_queue_wait(io_context_t ctx, struct timespec *timeout)
  23. {
  24. return io_getevents(ctx, 0, 0, NULL, timeout);
  25. }