sim-card
/
qemu
Archived
10
0
Fork 0

cpu_abort()

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@253 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2003-06-21 13:11:07 +00:00
parent 13b55754af
commit 7501267e22
1 changed files with 16 additions and 0 deletions

16
exec.c
View File

@ -563,3 +563,19 @@ TranslationBlock *tb_find_pc(unsigned long tc_ptr)
}
return &tbs[m_max];
}
void cpu_abort(CPUState *env, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "qemu: fatal: ");
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
#ifdef TARGET_I386
cpu_x86_dump_state(env, stderr, X86_DUMP_FPU | X86_DUMP_CCOP);
#endif
va_end(ap);
abort();
}