Remove cpususpend IDT vector for XEN.

This broke XEN kernel building.
This commit is contained in:
Mitsuru IWASAKI 2012-05-20 08:17:20 +00:00
parent d542f7f686
commit fe756f2a59
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235683
2 changed files with 4 additions and 0 deletions

View File

@ -336,6 +336,7 @@ IDTVEC(cpustop)
/*
* Executed by a CPU when it receives an IPI_SUSPEND from another CPU.
*/
#ifndef XEN
.text
SUPERALIGN_TEXT
IDTVEC(cpususpend)
@ -350,6 +351,7 @@ IDTVEC(cpususpend)
POP_FRAME
jmp doreti_iret
#endif
/*
* Executed by a CPU when it receives a RENDEZVOUS IPI from another CPU.

View File

@ -60,7 +60,9 @@ inthand_t
/* functions in mp_machdep.c */
void cpu_add(u_int apic_id, char boot_cpu);
void cpustop_handler(void);
#ifndef XEN
void cpususpend_handler(void);
#endif
void init_secondary(void);
void ipi_all_but_self(u_int ipi);
#ifndef XEN