1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Make the clock vector 255 instead of 240. On Lion boxes, 240 is

the AP wake-up vector. We probably want a more dynamic approach
to assigning vectors in the future...
This commit is contained in:
Marcel Moolenaar 2001-10-29 05:17:36 +00:00
parent e548086e08
commit b5f7b8be86
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85670
2 changed files with 3 additions and 3 deletions

View File

@ -189,7 +189,7 @@ cpu_initclocks()
tc_init(&ia64_timecounter);
ia64_set_itm(ia64_get_itc() + (itc_frequency + hz/2) / hz);
ia64_set_itv(240); /* highest priority class */
ia64_set_itv(255); /* highest priority class */
stathz = 128;
}

View File

@ -98,8 +98,8 @@ interrupt(u_int64_t vector, struct trapframe *framep)
printf("ExtINT interrupt: vector=%ld\n", vector);
goto out; /* XXX */
}
if (vector == 240) {/* clock interrupt */
if (vector == 255) {/* clock interrupt */
/* CTR0(KTR_INTR, "clock interrupt"); */
cnt.v_intr++;