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