diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-01 16:12:16 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-01 16:12:16 -0500 |
commit | c227f0995e1722a1abccc28cadf0664266bd8043 (patch) | |
tree | 39e92c2f818e3e8144978740b914731613af0e40 /exec-all.h | |
parent | 99a0949b720a0936da2052cb9a46db04ffc6db29 (diff) |
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b720a0936da2052cb9a46db04ffc6db29.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'exec-all.h')
-rw-r--r-- | exec-all.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/exec-all.h b/exec-all.h index 412b53a071..dd134a99f8 100644 --- a/exec-all.h +++ b/exec-all.h @@ -81,16 +81,16 @@ TranslationBlock *tb_gen_code(CPUState *env, void cpu_exec_init(CPUState *env); void QEMU_NORETURN cpu_loop_exit(void); int page_unprotect(target_ulong address, unsigned long pc, void *puc); -void tb_invalidate_phys_page_range(a_target_phys_addr start, a_target_phys_addr end, +void tb_invalidate_phys_page_range(target_phys_addr_t start, target_phys_addr_t end, int is_cpu_write_access); void tb_invalidate_page_range(target_ulong start, target_ulong end); void tlb_flush_page(CPUState *env, target_ulong addr); void tlb_flush(CPUState *env, int flush_global); int tlb_set_page_exec(CPUState *env, target_ulong vaddr, - a_target_phys_addr paddr, int prot, + target_phys_addr_t paddr, int prot, int mmu_idx, int is_softmmu); static inline int tlb_set_page(CPUState *env1, target_ulong vaddr, - a_target_phys_addr paddr, int prot, + target_phys_addr_t paddr, int prot, int mmu_idx, int is_softmmu) { if (prot & PAGE_READ) @@ -269,7 +269,7 @@ extern void *io_mem_opaque[IO_MEM_NB_ENTRIES]; #include "qemu-lock.h" -extern a_spinlock tb_lock; +extern spinlock_t tb_lock; extern int tb_invalidated_flag; |