summaryrefslogtreecommitdiff
path: root/sys/kern/kern_intr.c
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/4.1.1_cvscvs2svn2000-09-251-1/+1
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-1/+0
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Stage 1 of a cleanup of the i386 interrupt registration mechanism.Peter Wemm1999-04-211-405/+1
* add #include <sys/kernel.h> where it's needed by MALLOC_DEFINE()Peter Wemm1998-11-101-3/+3
* Start using the new SWI registration system instead of hardwiring everything.Doug Rabson1998-09-261-9/+13
* Implemented dynamic registration of software interrupt handlers. NotBruce Evans1998-08-111-6/+97
* Cast pointers to uintptr_t/intptr_t instead of to u_long/long,Bruce Evans1998-07-151-5/+5
* Changed the type of an isa/general interrupt handler to take aBruce Evans1998-06-181-3/+2
* Only build this on i386 for now. I may use it for the alpha later butDoug Rabson1998-06-111-1/+10
* This commit fixes various 64bit portability problems required forDoug Rabson1998-06-071-6/+6
* Really finish supporting compiling with `gcc -ansi'.Bruce Evans1998-04-171-2/+2
* Move include of <machine/ipl.h> inside ifndef SMP where it is used, toEivind Eklund1998-02-101-3/+3
* - Hide the 'device doesn't supported shared interrupts' code behindNate Williams1997-10-061-4/+5
* Added a half dozen casts to eliminate annoying warnings.Steve Passe1997-08-211-7/+7
* Moved splq() to isa/ipl_funcs.c for SMP only.Steve Passe1997-08-201-2/+4
* Removed unused #includes.Bruce Evans1997-08-021-4/+1
* Back out changes for 'conflicts' with IRQ, remove intr_registered()Andrey A. Chernov1997-07-091-7/+1
* Add safety check in case "conflicts" keyword specified more times thanAndrey A. Chernov1997-06-081-1/+7
* The defines INTR_FAST and INTR_EXCL are part of the public interface. TheDoug Rabson1997-06-021-3/+1
* Move interrupt handling code from isa.c to a new file. This should makeDoug Rabson1997-06-021-3/+3
* Move "typedef struct intrec {} intrec" from sys/interrupt.h to kern_intr.cPeter Wemm1997-06-011-1/+14
* <machine/spl.h> -> <machine/ipl.h>Peter Wemm1997-05-311-10/+10
* Fix problem reported by PHK: Panic in pcic probe because of NULL pointerStefan Eßer1997-05-281-12/+15
* Add support for shared interrupts to the kernel. This code is meantStefan Eßer1997-05-261-0/+418