diff options
| author | Paul Brook <paul@codesourcery.com> | 2010-05-29 02:27:35 +0100 |
|---|---|---|
| committer | Paul Brook <paul@codesourcery.com> | 2010-05-29 02:27:35 +0100 |
| commit | 68a1c816868b3e35a1da698af412b29e61b1948a (patch) | |
| tree | 2f8ae184dd481d3a0e74d1de76fc7b53189fd97c /cpu-all.h | |
| parent | 0be1d07c0e4fa7395aca5129cfc5bb9a0a94a78c (diff) | |
| download | focaccia-qemu-68a1c816868b3e35a1da698af412b29e61b1948a.tar.gz focaccia-qemu-68a1c816868b3e35a1da698af412b29e61b1948a.zip | |
Pre-allocate guest address space
Allow pre-allocation of the guest virtual address space in usermode emulation. Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'cpu-all.h')
| -rw-r--r-- | cpu-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu-all.h b/cpu-all.h index 47a5722a1d..77eaf85735 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -627,6 +627,7 @@ static inline void stfq_be_p(void *ptr, float64 v) #if defined(CONFIG_USE_GUEST_BASE) extern unsigned long guest_base; extern int have_guest_base; +extern unsigned long reserved_va; #define GUEST_BASE guest_base #else #define GUEST_BASE 0ul |