mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
w64: Fix data types in cpu-all.h, exec.c
w64 needs uintptr_t instead of unsigned long. For other hosts, nothing changes. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
27b0dc16b4
commit
c6d506742f
2 changed files with 7 additions and 7 deletions
6
exec.c
6
exec.c
|
|
@ -177,9 +177,9 @@ typedef struct PageDesc {
|
|||
|
||||
#define V_L1_SHIFT (L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS - V_L1_BITS)
|
||||
|
||||
unsigned long qemu_real_host_page_size;
|
||||
unsigned long qemu_host_page_size;
|
||||
unsigned long qemu_host_page_mask;
|
||||
uintptr_t qemu_real_host_page_size;
|
||||
uintptr_t qemu_host_page_size;
|
||||
uintptr_t qemu_host_page_mask;
|
||||
|
||||
/* This is a multi-level map on the virtual address space.
|
||||
The bottom level has pointers to PageDesc. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue