diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-03-16 20:23:49 +0100 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2012-04-15 21:25:16 +0200 |
commit | c6d506742fd997a29b611fda11f67c53d60dd5ef (patch) | |
tree | d3c63e38fa7de377b7f9eaa062e60d2f876683e3 /exec.c | |
parent | 27b0dc16b4e50b59aeefff2bfa73cf2eb8c7a70d (diff) | |
download | qemu-c6d506742fd997a29b611fda11f67c53d60dd5ef.zip qemu-c6d506742fd997a29b611fda11f67c53d60dd5ef.tar.gz qemu-c6d506742fd997a29b611fda11f67c53d60dd5ef.tar.bz2 |
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>
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. */ |