aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/isa/atpic_vector.s
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2000-10-05 23:09:57 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2000-10-05 23:09:57 +0000
commit1931cf940abe0486ab60e2f09ce5673f5f8feccf (patch)
tree9d8d1948978c077c015ec37457eccdd03dcc20c8 /sys/i386/isa/atpic_vector.s
parent4614ea87204596d897e605a0921fb21d4ab6fc86 (diff)
downloadsrc-1931cf940abe0486ab60e2f09ce5673f5f8feccf.tar.gz
src-1931cf940abe0486ab60e2f09ce5673f5f8feccf.zip
- Heavyweight interrupt threads on the alpha for device I/O interrupts.
- Make softinterrupts (SWI's) almost completely MI, and divorce them completely from the x86 hardware interrupt code. - The ihandlers array is now gone. Instead, there is a MI shandlers array that just contains SWI handlers. - Most of the former machine/ipl.h files have moved to a new sys/ipl.h. - Stub out all the spl*() functions on all architectures. Submitted by: dfr
Notes
Notes: svn path=/head/; revision=66698
Diffstat (limited to 'sys/i386/isa/atpic_vector.s')
-rw-r--r--sys/i386/isa/atpic_vector.s13
1 files changed, 0 insertions, 13 deletions
diff --git a/sys/i386/isa/atpic_vector.s b/sys/i386/isa/atpic_vector.s
index d2b88bf705a3..0a89492d8ba0 100644
--- a/sys/i386/isa/atpic_vector.s
+++ b/sys/i386/isa/atpic_vector.s
@@ -211,16 +211,3 @@ MCOUNT_LABEL(bintr)
INTR(15,intr15, IO_ICU2, ENABLE_ICU1_AND_2, ah,)
MCOUNT_LABEL(eintr)
-
- .data
- .globl _ihandlers
-_ihandlers: /* addresses of interrupt handlers */
- /* actually resumption addresses for HWI's */
- .long Xresume0, Xresume1, Xresume2, Xresume3
- .long Xresume4, Xresume5, Xresume6, Xresume7
- .long Xresume8, Xresume9, Xresume10, Xresume11
- .long Xresume12, Xresume13, Xresume14, Xresume15
- .long _swi_null, swi_net, _swi_null, _swi_null
- .long _swi_vm, _swi_null, _softclock
-
- .text