diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-12-24 22:50:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-12-24 22:50:32 +0000 |
commit | f78d70bb67e8ac490d726ee2cc1410d1ba6b82c7 (patch) | |
tree | 492843aadc1365398518cba504bf2ae348e63442 /sys/arch/i386 | |
parent | b1434114f469a0b54d0d6a82ab3ffe1bdb6c8652 (diff) |
{e,}intr{cnt,names} bye-bye.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/vector.s | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/arch/i386/i386/vector.s b/sys/arch/i386/i386/vector.s index 828dbd9df70..be65126dec3 100644 --- a/sys/arch/i386/i386/vector.s +++ b/sys/arch/i386/i386/vector.s @@ -1,4 +1,4 @@ -/* $OpenBSD: vector.s,v 1.5 2004/12/24 21:22:00 pvalchev Exp $ */ +/* $OpenBSD: vector.s,v 1.6 2004/12/24 22:50:29 miod Exp $ */ /* $NetBSD: vector.s,v 1.32 1996/01/07 21:29:47 mycroft Exp $ */ /* @@ -250,13 +250,3 @@ IDTVEC(recurse) .long _C_LABEL(Xsofttty), _C_LABEL(Xsoftnet) .long _C_LABEL(Xsoftclock) .long 0, 0 - -/* Some bogus data, to keep vmstat happy, for now. */ - .globl _C_LABEL(intrnames), _C_LABEL(eintrnames) - .globl _C_LABEL(intrcnt), _C_LABEL(eintrcnt) -_C_LABEL(intrnames): - .long 0 -_C_LABEL(eintrnames): -_C_LABEL(intrcnt): - .long 0 -_C_LABEL(eintrcnt): |