]> git.proxmox.com Git - mirror_qemu.git/blame - include/sysemu/iothread.h
dump: Add more offset variables
[mirror_qemu.git] / include / sysemu / iothread.h
CommitLineData
be8d8537
SH
1/*
2 * Event loop thread
3 *
4 * Copyright Red Hat Inc., 2013
5 *
6 * Authors:
7 * Stefan Hajnoczi <stefanha@redhat.com>
8 *
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.
11 *
12 */
13
14#ifndef IOTHREAD_H
15#define IOTHREAD_H
16
17#include "block/aio.h"
8c2664d8 18#include "qemu/thread.h"
ec150c7e 19#include "qom/object.h"
be8d8537
SH
20
21#define TYPE_IOTHREAD "iothread"
22
db1015e9 23struct IOThread {
8c2664d8
SH
24 Object parent_obj;
25
26 QemuThread thread;
27 AioContext *ctx;
b506e0f1 28 bool run_gcontext; /* whether we should run gcontext */
329163cb
WY
29 GMainContext *worker_context;
30 GMainLoop *main_loop;
21c4d15b 31 QemuSemaphore init_done_sem; /* is thread init done? */
2362a28e
SH
32 bool stopping; /* has iothread_stop() been called? */
33 bool running; /* should iothread_run() continue? */
8c2664d8 34 int thread_id;
0d9d86fb
SH
35
36 /* AioContext poll parameters */
37 int64_t poll_max_ns;
5e5db499
SH
38 int64_t poll_grow;
39 int64_t poll_shrink;
1793ad02
SG
40
41 /* AioContext AIO engine parameters */
42 int64_t aio_max_batch;
db1015e9
EH
43};
44typedef struct IOThread IOThread;
be8d8537 45
8110fa1d
EH
46DECLARE_INSTANCE_CHECKER(IOThread, IOTHREAD,
47 TYPE_IOTHREAD)
be8d8537 48
be8d8537 49char *iothread_get_id(IOThread *iothread);
fbcc6923 50IOThread *iothread_by_id(const char *id);
be8d8537 51AioContext *iothread_get_aio_context(IOThread *iothread);
329163cb 52GMainContext *iothread_get_g_main_context(IOThread *iothread);
be8d8537 53
0173e21b
PX
54/*
55 * Helpers used to allocate iothreads for internal use. These
56 * iothreads will not be seen by monitor clients when query using
57 * "query-iothreads".
58 */
59IOThread *iothread_create(const char *id, Error **errp);
82d90705 60void iothread_stop(IOThread *iothread);
0173e21b
PX
61void iothread_destroy(IOThread *iothread);
62
ad22c308
EU
63/*
64 * Returns true if executing withing IOThread context,
65 * false otherwise.
66 */
67bool qemu_in_iothread(void);
68
be8d8537 69#endif /* IOTHREAD_H */