Revert previous definition of cpu_throw(). Non-MP configurations

were broken as well.
This commit is contained in:
Marcel Moolenaar 2001-12-30 23:39:15 +00:00
parent 09bf11699f
commit 200281abc1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88727
2 changed files with 9 additions and 2 deletions

View File

@ -209,8 +209,6 @@ ENTRY(cpu_switch, 0)
mov ar.rsc=3 // turn RSE back on
XENTRY(cpu_throw)
#ifdef SMP
add r17 = PC_CPUID, r13
movl r16 = smp_active

View File

@ -301,6 +301,15 @@ cpu_wait(p)
{
}
/* Temporary helper */
void
cpu_throw(void)
{
cpu_switch();
panic("cpu_throw() didn't");
}
/*
* Dump the machine specific header information at the start of a core dump.
*/