diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-08-12 00:55:02 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-08-12 00:55:02 +0000 |
commit | 718ee9c261dd75c43164ea69c0c25a11734a99bc (patch) | |
tree | fe8935490c3fe7cc0aba1f372685b6382d825087 /sys/arch/sparc | |
parent | 87ffdf06b6ecc46b38ca953419304b64e37c7c95 (diff) |
Provide type information for a few symbols that userland needs.
vmstat -i works again.
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/sparc/locore.s | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/sparc/sparc/locore.s b/sys/arch/sparc/sparc/locore.s index 4234bc473fe..2da7a43bffc 100644 --- a/sys/arch/sparc/sparc/locore.s +++ b/sys/arch/sparc/sparc/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.53 2002/08/11 23:07:34 art Exp $ */ +/* $OpenBSD: locore.s,v 1.54 2002/08/12 00:55:01 art Exp $ */ /* $NetBSD: locore.s,v 1.73 1997/09/13 20:36:48 pk Exp $ */ /* @@ -6568,7 +6568,10 @@ _C_LABEL(proc0paddr): .globl winuf_invalid /* interrupt counters XXX THESE BELONG ELSEWHERE (if anywhere) */ - .globl _C_LABEL(intrcnt), _C_LABEL(eintrcnt), _C_LABEL(intrnames), _C_LABEL(eintrnames) + .globl _C_LABEL(intrcnt) ; OTYPE(_C_LABEL(intrcnt)) + .globl _C_LABEL(eintrcnt) ; OTYPE(_C_LABEL(eintrcnt)) + .globl _C_LABEL(intrnames) ; OTYPE(_C_LABEL(intrnames)) + .globl _C_LABEL(eintrnames) ; OTYPE(_C_LABEL(eintrnames)) _C_LABEL(intrnames): .asciz "spur" .asciz "lev1" |