diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-03 19:22:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-03 19:22:58 +0000 |
commit | 2124458dedb829b44635f99cb4c3ad47233c56af (patch) | |
tree | ca9e91aa212fa6e296f6d3398c04f6d27bc8e86e /sys | |
parent | 110fb42a3b88019457530409bde02a56fed95b20 (diff) |
sigh, not yet
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/alpha/locore.s | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/locore.s b/sys/arch/alpha/alpha/locore.s index b01c8605a9b..6c25d64c7ad 100644 --- a/sys/arch/alpha/alpha/locore.s +++ b/sys/arch/alpha/alpha/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.25 2004/07/03 18:24:42 deraadt Exp $ */ +/* $OpenBSD: locore.s,v 1.26 2004/07/03 19:22:57 deraadt Exp $ */ /* $NetBSD: locore.s,v 1.94 2001/04/26 03:10:44 ross Exp $ */ /*- @@ -1455,6 +1455,23 @@ LEAF(copyerr, 0) RET END(copyerr) +/**************************************************************************/ + + .data +/* Some bogus data, to keep vmstat happy, for now. */ +EXPORT(intrnames) + .type intrnames,@object +EXPORT(eintrnames) + .type eintrnames,@object + .align 3 +EXPORT(intrcnt) + .type intrcnt,@object +EXPORT(eintrcnt) + .type eintrcnt,@object + .text + +/**************************************************************************/ + /* * console 'restart' routine to be placed in HWRPB. */ |