https://github.com/qemu/qemu
Raw File
Tip revision: ee573f5326046223b6eef4ae7fbfec31d274e093 authored by Peter Maydell on 22 April 2020, 16:51:35 UTC
Update version for v5.0.0-rc4 release
Tip revision: ee573f5
tcg-stub.c
/*
 * QEMU TCG accelerator stub
 *
 * Copyright Red Hat, Inc. 2013
 *
 * Author: Paolo Bonzini     <pbonzini@redhat.com>
 *
 * 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 "cpu.h"
#include "tcg/tcg.h"
#include "exec/exec-all.h"

void tb_flush(CPUState *cpu)
{
}

void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
{
}
back to top