https://github.com/qemu/qemu
Raw File
Tip revision: 81c7ed41a1b33031f3e4fe24191a998a492044b8 authored by Peter Maydell on 12 April 2022, 16:01:34 UTC
Update version for v7.0.0-rc4 release
Tip revision: 81c7ed4
qtest.c
/*
 * qtest stubs
 *
 * Copyright (c) 2014 Linaro Limited
 * Written by Peter Maydell
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"
#include "sysemu/qtest.h"

/* Needed for qtest_allowed() */
bool qtest_allowed;

bool qtest_driver(void)
{
    return false;
}

int64_t qtest_get_virtual_clock(void)
{
    return 0;
}
back to top