From b9fa3646cb6c71d190ebe0152cb156bdc3f68938 Mon Sep 17 00:00:00 2001 From: ross Date: Thu, 19 Nov 1998 02:23:15 +0000 Subject: [PATCH] #include #include g/c some EVCNT_COUNTERS stuff. --- sys/arch/alpha/alpha/interrupt.c | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/sys/arch/alpha/alpha/interrupt.c b/sys/arch/alpha/alpha/interrupt.c index 57ba01f8f2fe..d4bb92f60ffc 100644 --- a/sys/arch/alpha/alpha/interrupt.c +++ b/sys/arch/alpha/alpha/interrupt.c @@ -1,4 +1,4 @@ -/* $NetBSD: interrupt.c,v 1.33 1998/09/29 19:40:34 thorpej Exp $ */ +/* $NetBSD: interrupt.c,v 1.34 1998/11/19 02:23:15 ross Exp $ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. @@ -37,7 +37,7 @@ #include /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.33 1998/09/29 19:40:34 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.34 1998/11/19 02:23:15 ross Exp $"); #include #include @@ -55,19 +55,14 @@ __KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.33 1998/09/29 19:40:34 thorpej Exp $ #include #include #include +#include +#include #if defined(MULTIPROCESSOR) #include #include #endif -#ifdef EVCNT_COUNTERS -#include -struct evcnt clock_intr_evcnt; /* event counter for clock intrs. */ -#else -#include -#endif - void interrupt(a0, a1, a2, framep) unsigned long a0, a1, a2; @@ -127,11 +122,7 @@ interrupt(a0, a1, a2, framep) #else cnt.v_intr++; #endif -#ifdef EVCNT_COUNTERS - clock_intr_evcnt.ev_count++; -#else intrcnt[INTRCNT_CLOCK]++; -#endif if (platform.clockintr) (*platform.clockintr)(framep); break;