diff options
author | malc <av1474@comtv.ru> | 2009-10-01 22:20:47 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-10-01 22:45:02 +0400 |
commit | 99a0949b720a0936da2052cb9a46db04ffc6db29 (patch) | |
tree | f9e39633853e35b49fc4465337cc196b9650866e /exec-all.h | |
parent | Include microblaze binaries in tarbin. (diff) | |
download | qemu-kvm-99a0949b720a0936da2052cb9a46db04ffc6db29.tar.gz qemu-kvm-99a0949b720a0936da2052cb9a46db04ffc6db29.tar.bz2 qemu-kvm-99a0949b720a0936da2052cb9a46db04ffc6db29.zip |
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time
being.
Signed-off-by: malc <av1474@comtv.ru>
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 dd134a99f..412b53a07 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(target_phys_addr_t start, target_phys_addr_t end, +void tb_invalidate_phys_page_range(a_target_phys_addr start, a_target_phys_addr 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, - target_phys_addr_t paddr, int prot, + a_target_phys_addr paddr, int prot, int mmu_idx, int is_softmmu); static inline int tlb_set_page(CPUState *env1, target_ulong vaddr, - target_phys_addr_t paddr, int prot, + a_target_phys_addr 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 spinlock_t tb_lock; +extern a_spinlock tb_lock; extern int tb_invalidated_flag; |