xref: /qemu/stubs/iothread-lock.c (revision a3434a2d56aee3018f4a0f55c7e0f0cda11f3d9e)
1 #include "qemu/osdep.h"
2 #include "qemu/main-loop.h"
3 
4 bool qemu_mutex_iothread_locked(void)
5 {
6     return true;
7 }
8 
9 void qemu_mutex_lock_iothread_impl(const char *file, int line)
10 {
11 }
12 
13 void qemu_mutex_unlock_iothread(void)
14 {
15 }
16