]> git.proxmox.com Git - mirror_qemu.git/blob - include/exec/vaddr.h
Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging
[mirror_qemu.git] / include / exec / vaddr.h
1 /* Define vaddr. */
2
3 #ifndef VADDR_H
4 #define VADDR_H
5
6 /**
7 * vaddr:
8 * Type wide enough to contain any #target_ulong virtual address.
9 */
10 typedef uint64_t vaddr;
11 #define VADDR_PRId PRId64
12 #define VADDR_PRIu PRIu64
13 #define VADDR_PRIo PRIo64
14 #define VADDR_PRIx PRIx64
15 #define VADDR_PRIX PRIX64
16 #define VADDR_MAX UINT64_MAX
17
18 #endif