diff options
author | dima <dima@FreeBSD.org> | 1998-11-09 10:47:19 +0000 |
---|---|---|
committer | dima <dima@FreeBSD.org> | 1998-11-09 10:47:19 +0000 |
commit | 4fbaec48cbd60d117471434dcc74946855030e5f (patch) | |
tree | 504ec6a00f417008a59d62758972916aa887484e /sys | |
parent | 6a35b23772b986124b28a774636425472b007dfe (diff) | |
download | FreeBSD-src-4fbaec48cbd60d117471434dcc74946855030e5f.zip FreeBSD-src-4fbaec48cbd60d117471434dcc74946855030e5f.tar.gz |
Add some bogus stuff to make systat/vmstat happy.
Reviewed by: dfr
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/alpha/locore.s | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/alpha/alpha/locore.s b/sys/alpha/alpha/locore.s index 1a97de2..9aa19e1 100644 --- a/sys/alpha/alpha/locore.s +++ b/sys/alpha/alpha/locore.s @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: locore.s,v 1.2 1998/06/10 19:59:40 dfr Exp $ + * $Id: locore.s,v 1.3 1998/08/10 07:53:58 dfr Exp $ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. @@ -293,3 +293,13 @@ LEAF(restorefpstate, 1) .text +/* XXX: make systat/vmstat happy */ + .data +EXPORT(intrnames) + ASCIZ "foobar"; +EXPORT(eintrnames) + .align 3 +EXPORT(intrcnt) + .quad 0; +EXPORT(eintrcnt) + .text |