mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
o Move definition of struct ia64_fdesc here to remove duplication.
o Add prototype of os_boot_rendez.
This commit is contained in:
parent
305e39f49b
commit
8cc99b71a9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96058
@ -42,11 +42,21 @@ struct fpreg;
|
|||||||
struct thread;
|
struct thread;
|
||||||
struct reg;
|
struct reg;
|
||||||
|
|
||||||
|
struct ia64_fdesc {
|
||||||
|
u_int64_t func;
|
||||||
|
u_int64_t gp;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define FDESC_FUNC(fn) (((struct ia64_fdesc *) fn)->func)
|
||||||
|
#define FDESC_GP(fn) (((struct ia64_fdesc *) fn)->gp)
|
||||||
|
|
||||||
void busdma_swi(void);
|
void busdma_swi(void);
|
||||||
void cpu_halt(void);
|
void cpu_halt(void);
|
||||||
void cpu_reset(void);
|
void cpu_reset(void);
|
||||||
int is_physical_memory(vm_offset_t addr);
|
|
||||||
void swi_vm(void *);
|
|
||||||
int ia64_running_in_simulator(void);
|
int ia64_running_in_simulator(void);
|
||||||
|
int is_physical_memory(vm_offset_t addr);
|
||||||
|
void os_boot_rendez(void);
|
||||||
|
void os_mca(void);
|
||||||
|
void swi_vm(void *);
|
||||||
|
|
||||||
#endif /* !_MACHINE_MD_VAR_H_ */
|
#endif /* !_MACHINE_MD_VAR_H_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user