aboutsummaryrefslogtreecommitdiffstats
path: root/tools/debugger
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-06-06 09:48:17 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-06-06 09:48:17 +0100
commitab8096f27d7223c01fcf862118cd628b4a255c18 (patch)
tree1dd452499963328b73e2ff81b765e8272bdf9c8b /tools/debugger
parent542ad2f200de2e7f94a74bbce59579b58d99c8b6 (diff)
downloadxen-ab8096f27d7223c01fcf862118cd628b4a255c18.tar.gz
xen-ab8096f27d7223c01fcf862118cd628b4a255c18.tar.bz2
xen-ab8096f27d7223c01fcf862118cd628b4a255c18.zip
Represent PFNs with their own type, rather than 'unsigned long'.
('long' changes size and alignment between 32- and 64-bit ABIs.) Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Diffstat (limited to 'tools/debugger')
-rw-r--r--tools/debugger/libxendebug/xendebug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debugger/libxendebug/xendebug.c b/tools/debugger/libxendebug/xendebug.c
index 1a12848f5d..c5d6143b77 100644
--- a/tools/debugger/libxendebug/xendebug.c
+++ b/tools/debugger/libxendebug/xendebug.c
@@ -57,7 +57,7 @@ typedef struct domain_context /* local cache of domain state */
vcpu_guest_context_t context[MAX_VIRT_CPUS];
long total_pages;
- unsigned long *page_array;
+ xen_pfn_t *page_array;
unsigned long cr3_phys[MAX_VIRT_CPUS];
unsigned long *cr3_virt[MAX_VIRT_CPUS];