diff options
| author | Steve Passe <fsmp@FreeBSD.org> | 1997-08-20 05:19:49 +0000 |
|---|---|---|
| committer | Steve Passe <fsmp@FreeBSD.org> | 1997-08-20 05:19:49 +0000 |
| commit | 77625cfe0b328a5de919aee5bd6e9ea29c554927 (patch) | |
| tree | e2c662dfc73cedf52740ad32797675df18f80006 /sys/kern/kern_intr.c | |
| parent | 45d47e069fcb72627eb3914e4d10cf9315abbcce (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_intr.c')
| -rw-r--r-- | sys/kern/kern_intr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index 380166597001..ad62dd4ba97b 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: kern_intr.c,v 1.8 1997/07/09 18:06:25 ache Exp $ + * $Id: kern_intr.c,v 1.9 1997/08/02 14:31:27 bde Exp $ * */ @@ -57,9 +57,10 @@ typedef struct intrec { /* * The interrupt multiplexer calls each of the handlers in turn, * and applies the associated interrupt mask to "cpl", which is - * defined as a ".long" in /sys/i386/isa/icu.s + * defined as a ".long" in /sys/i386/isa/ipl.s */ +#ifndef SMP static inline intrmask_t splq(intrmask_t mask) { @@ -67,6 +68,7 @@ splq(intrmask_t mask) cpl |= mask; return (tmp); } +#endif /* SMP */ static void intr_mux(void *arg) |
