sim-card
/
qemu
Archived
10
0
Fork 0

Use the correct header in the TCG MIPS code to find cacheflush() on OpenBSD.

Use the correct header in the TCG MIPS code to find cacheflush() on OpenBSD
to fix compilation of the MIPS host support for OpenBSD/mips64 based architecures.

Signed-off-by: Brad Smith <brad@comstyle.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
Brad 2011-05-25 23:06:00 -04:00 committed by Aurelien Jarno
parent b7fa9214d8
commit 03938c133e
1 changed files with 4 additions and 0 deletions

View File

@ -102,7 +102,11 @@ enum {
/* guest base is supported */
#define TCG_TARGET_HAS_GUEST_BASE
#ifdef __OpenBSD__
#include <machine/sysarch.h>
#else
#include <sys/cachectl.h>
#endif
static inline void flush_icache_range(unsigned long start, unsigned long stop)
{