io_queue_run.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. #include "libaio.h"
  17. #include <errno.h>
  18. #include <stdlib.h>
  19. #include <time.h>
  20. int io_queue_run(io_context_t ctx)
  21. {
  22. static struct timespec timeout = { 0, 0 };
  23. struct io_event event;
  24. int ret;
  25. /* FIXME: batch requests? */
  26. while (1 == (ret = io_getevents(ctx, 0, 1, &event, &timeout))) {
  27. io_callback_t cb = (io_callback_t)event.data;
  28. struct iocb *iocb = event.obj;
  29. cb(ctx, iocb, event.res, event.res2);
  30. }
  31. return ret;
  32. }