Fix missing prototype warnings by moving declarations
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5407 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3e46b2ef2a
commit
48585ec51d
@ -340,6 +340,12 @@ CPUSPARCState *cpu_sparc_init(const char *cpu_model);
|
||||
void cpu_sparc_set_id(CPUSPARCState *env, unsigned int cpu);
|
||||
void sparc_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt,
|
||||
...));
|
||||
void cpu_lock(void);
|
||||
void cpu_unlock(void);
|
||||
int cpu_sparc_handle_mmu_fault(CPUSPARCState *env1, target_ulong address, int rw,
|
||||
int mmu_idx, int is_softmmu);
|
||||
target_ulong mmu_probe(CPUSPARCState *env, target_ulong address, int mmulev);
|
||||
void dump_mmu(CPUSPARCState *env);
|
||||
|
||||
/* translate.c */
|
||||
void gen_intermediate_code_init(CPUSPARCState *env);
|
||||
@ -492,4 +498,7 @@ static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
|
||||
|
||||
#include "cpu-all.h"
|
||||
|
||||
/* sum4m.c, sun4u.c */
|
||||
void cpu_check_irqs(CPUSPARCState *env);
|
||||
|
||||
#endif
|
||||
|
@ -21,23 +21,12 @@ static inline void regs_to_env(void)
|
||||
{
|
||||
}
|
||||
|
||||
/* helper.c */
|
||||
void cpu_lock(void);
|
||||
void cpu_unlock(void);
|
||||
int cpu_sparc_handle_mmu_fault(CPUState *env1, target_ulong address, int rw,
|
||||
int mmu_idx, int is_softmmu);
|
||||
target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev);
|
||||
void dump_mmu(CPUState *env);
|
||||
|
||||
/* op_helper.c */
|
||||
void do_interrupt(CPUState *env);
|
||||
|
||||
/* cpu-exec.c */
|
||||
void cpu_loop_exit(void);
|
||||
|
||||
/* sun4m.c */
|
||||
void cpu_check_irqs(CPUSPARCState *env);
|
||||
|
||||
static inline int cpu_halted(CPUState *env1) {
|
||||
if (!env1->halted)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user