diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-10-31 21:29:05 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-10-31 21:29:05 +0000 |
commit | e2310b59beda3277ee96bdc89b31bb077754cfdc (patch) | |
tree | 3a6d516399e6a805fe171a46d5fb20a880004057 | |
parent | 1a0f4d754891711d21bfba6dfb3b53729c12be93 (diff) |
Remove idle_u; it's been unused for a while.
-rw-r--r-- | sys/arch/sparc64/sparc64/locore.s | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sys/arch/sparc64/sparc64/locore.s b/sys/arch/sparc64/sparc64/locore.s index 3b9d793a504..e4f556ae4ed 100644 --- a/sys/arch/sparc64/sparc64/locore.s +++ b/sys/arch/sparc64/sparc64/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.99 2007/10/31 20:20:39 kettenis Exp $ */ +/* $OpenBSD: locore.s,v 1.100 2007/10/31 21:29:04 kettenis Exp $ */ /* $NetBSD: locore.s,v 1.137 2001/08/13 06:10:10 jdolecek Exp $ */ /* @@ -275,18 +275,6 @@ _C_LABEL(data_start): ! Start of data segment #define DATA_START _C_LABEL(data_start) /* - * When a process exits and its u. area goes away, we set cpcb to point - * to this `u.', leaving us with something to use for an interrupt stack, - * and letting all the register save code have a pcb_uw to examine. - * This is also carefully arranged (to come just before u0, so that - * process 0's kernel stack can quietly overrun into it during bootup, if - * we feel like doing that). - */ - .globl _C_LABEL(idle_u) -_C_LABEL(idle_u): - .space USPACE - -/* * Process 0's u. * * This must be aligned on an 8 byte boundary. @@ -1147,7 +1135,7 @@ pmap_screwup: .data _ALIGN redzone: - .xword _C_LABEL(idle_u) + REDSIZE + .xword 0 redstack: .space REDSTACK eredstack: |