commit | b480d9b74dfd1efd29026b7dc6438364a633ee99 | [log] [tgz] |
---|---|---|
author | Paul Brook <paul@codesourcery.com> | Fri Mar 12 23:23:29 2010 +0000 |
committer | Paul Brook <paul@codesourcery.com> | Fri Mar 12 23:25:52 2010 +0000 |
tree | ba5e9af2816fb452437070da74e87d15f55d7255 | |
parent | 4836a2b09a94969d3d69c5c9f9ba8f58767575ca [diff] [blame] |
Fix usermode virtual address type Usermode virtual addresses are abi_ulong, not target_ulong. Signed-off-by: Paul Brook <paul@codesourcery.com>
diff --git a/exec-all.h b/exec-all.h index 6c44d32..56e7977 100644 --- a/exec-all.h +++ b/exec-all.h
@@ -29,7 +29,7 @@ addresses in userspace mode. Define tb_page_addr_t to be an appropriate type. */ #if defined(CONFIG_USER_ONLY) -typedef target_ulong tb_page_addr_t; +typedef abi_ulong tb_page_addr_t; #else typedef ram_addr_t tb_page_addr_t; #endif