diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-04-13 14:37:27 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-04-13 14:37:27 +0000 |
commit | 8c1a4cda99d30ee2fcf1fefb025eef5b3778e883 (patch) | |
tree | 4549786f46cc3e45c156d6addcc950a4d19a9253 | |
parent | 8adb813abf1d851df2cf44c549726c74bf577620 (diff) |
Don't use NBPG.
From NetBSD
ok martin@ miod@
-rw-r--r-- | sys/arch/alpha/alpha/debug.s | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/alpha/alpha/debug.s b/sys/arch/alpha/alpha/debug.s index 93ffe9df04a..7d58f5d8918 100644 --- a/sys/arch/alpha/alpha/debug.s +++ b/sys/arch/alpha/alpha/debug.s @@ -1,4 +1,4 @@ -/* $OpenBSD: debug.s,v 1.2 2000/11/08 19:16:58 ericj Exp $ */ +/* $OpenBSD: debug.s,v 1.3 2006/04/13 14:37:26 brad Exp $ */ /* $NetBSD: debug.s,v 1.5 1999/06/18 18:11:56 thorpej Exp $ */ /*- @@ -48,8 +48,9 @@ inc6: .stabs __FILE__,132,0,0,inc6; .loc 1 __LINE__ /* * Debugger stack. */ -BSS(debug_stack_bottom, NBPG) -ABS(debug_stack_top, debug_stack_bottom + NBPG) +#define DEBUG_STACK_SIZE 8192 +BSS(debug_stack_bottom, DEBUG_STACK_SIZE) +ABS(debug_stack_top, debug_stack_bottom + DEBUG_STACK_SIZE) /* * alpha_debug: |