stubs: fully replace qemu-tool.c and qemu-user.c

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2012-11-26 15:36:40 +01:00
parent 4d4545743f
commit 5708fc6655
20 changed files with 138 additions and 167 deletions

9
stubs/cpu-get-icount.c Normal file
View file

@ -0,0 +1,9 @@
#include "qemu-common.h"
#include "qemu/timer.h"
int use_icount;
int64_t cpu_get_icount(void)
{
abort();
}