mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
qemu-iothread: IOThread supports the GMainContext event loop
IOThread uses AioContext event loop and does not run a GMainContext. Therefore,chardev cannot work in IOThread,such as the chardev is used for colo-compare packets reception. This patch makes the IOThread run the GMainContext event loop, chardev and IOThread can work together. Reviewed-by: Fam Zheng <famz@redhat.com> Signed-off-by: Wang Yong <wang.yong155@zte.com.cn> Signed-off-by: Wang Guang <wang.guang55@zte.com.cn> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
61c5f46959
commit
329163cbe6
2 changed files with 49 additions and 0 deletions
|
@ -24,6 +24,9 @@ typedef struct {
|
|||
|
||||
QemuThread thread;
|
||||
AioContext *ctx;
|
||||
GMainContext *worker_context;
|
||||
GMainLoop *main_loop;
|
||||
GOnce once;
|
||||
QemuMutex init_done_lock;
|
||||
QemuCond init_done_cond; /* is thread initialization done? */
|
||||
bool stopping;
|
||||
|
@ -41,5 +44,6 @@ typedef struct {
|
|||
char *iothread_get_id(IOThread *iothread);
|
||||
AioContext *iothread_get_aio_context(IOThread *iothread);
|
||||
void iothread_stop_all(void);
|
||||
GMainContext *iothread_get_g_main_context(IOThread *iothread);
|
||||
|
||||
#endif /* IOTHREAD_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue