scsi-bus: remove bogus assertion
[qemu/ar7.git] / include / sysemu / iothread.h
bloba32214a64752d4a422d7bd280d8cacefb72907bb
1 /*
2 * Event loop thread
4 * Copyright Red Hat Inc., 2013
6 * Authors:
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #ifndef IOTHREAD_H
15 #define IOTHREAD_H
17 #include "block/aio.h"
19 #define TYPE_IOTHREAD "iothread"
21 typedef struct IOThread IOThread;
23 #define IOTHREAD(obj) \
24 OBJECT_CHECK(IOThread, obj, TYPE_IOTHREAD)
26 IOThread *iothread_find(const char *id);
27 char *iothread_get_id(IOThread *iothread);
28 AioContext *iothread_get_aio_context(IOThread *iothread);
30 #endif /* IOTHREAD_H */