2016-01-29 20:49:52 +03:00
|
|
|
#include "qemu/osdep.h"
|
2012-11-26 18:36:40 +04:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qemu/main-loop.h"
|
|
|
|
|
2015-06-18 19:47:19 +03:00
|
|
|
bool qemu_mutex_iothread_locked(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:36:40 +04:00
|
|
|
void qemu_mutex_lock_iothread(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_mutex_unlock_iothread(void)
|
|
|
|
{
|
|
|
|
}
|