Revision ea6abffa8a08d832feb759d359d5b935e3087cf7 authored by Peter Maydell on 17 July 2018, 17:15:19 UTC, committed by Peter Maydell on 17 July 2018, 17:15:19 UTC
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1 parent 59b5552
Raw File
iothread-lock.c
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/main-loop.h"

bool qemu_mutex_iothread_locked(void)
{
    return true;
}

void qemu_mutex_lock_iothread(void)
{
}

void qemu_mutex_unlock_iothread(void)
{
}
back to top