linux-aio.c 605 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Linux native AIO support.
  3. *
  4. * Copyright (C) 2009 IBM, Corp.
  5. * Copyright (C) 2009 Red Hat, Inc.
  6. *
  7. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  8. * See the COPYING file in the top-level directory.
  9. */
  10. #include "qemu/osdep.h"
  11. #include "block/aio.h"
  12. #include "block/raw-aio.h"
  13. void laio_detach_aio_context(LinuxAioState *s, AioContext *old_context)
  14. {
  15. abort();
  16. }
  17. void laio_attach_aio_context(LinuxAioState *s, AioContext *new_context)
  18. {
  19. abort();
  20. }
  21. LinuxAioState *laio_init(Error **errp)
  22. {
  23. abort();
  24. }
  25. void laio_cleanup(LinuxAioState *s)
  26. {
  27. abort();
  28. }