Don't use NBPG.
This commit is contained in:
parent
106ae5d65e
commit
7a22c14e21
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: debug.s,v 1.8 2001/05/30 15:24:27 lukem Exp $ */
|
/* $NetBSD: debug.s,v 1.9 2003/04/08 22:37:52 thorpej Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
|
* Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
__KERNEL_RCSID(6, "$NetBSD: debug.s,v 1.8 2001/05/30 15:24:27 lukem Exp $")
|
__KERNEL_RCSID(6, "$NetBSD: debug.s,v 1.9 2003/04/08 22:37:52 thorpej Exp $")
|
||||||
|
|
||||||
#include "opt_kgdb.h"
|
#include "opt_kgdb.h"
|
||||||
|
|
||||||
|
@ -51,8 +51,9 @@ inc6: .stabs __FILE__,132,0,0,inc6; .loc 1 __LINE__
|
||||||
/*
|
/*
|
||||||
* Debugger stack.
|
* Debugger stack.
|
||||||
*/
|
*/
|
||||||
BSS(debug_stack_bottom, NBPG)
|
#define DEBUG_STACK_SIZE 8192
|
||||||
ABS(debug_stack_top, debug_stack_bottom + NBPG)
|
BSS(debug_stack_bottom, DEBUG_STACK_SIZE)
|
||||||
|
ABS(debug_stack_top, debug_stack_bottom + DEBUG_STACK_SIZE)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* alpha_debug:
|
* alpha_debug:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: genassym.cf,v 1.7 2003/01/17 22:11:17 thorpej Exp $
|
# $NetBSD: genassym.cf,v 1.8 2003/04/08 22:37:52 thorpej Exp $
|
||||||
|
|
||||||
#
|
#
|
||||||
# Copyright (c) 1994, 1995 Gordon W. Ross
|
# Copyright (c) 1994, 1995 Gordon W. Ross
|
||||||
|
@ -56,8 +56,6 @@ include <uvm/uvm.h>
|
||||||
include <uvm/uvm_extern.h>
|
include <uvm/uvm_extern.h>
|
||||||
|
|
||||||
# general constants
|
# general constants
|
||||||
define NBPG NBPG
|
|
||||||
define PGSHIFT PGSHIFT
|
|
||||||
define VM_MAX_ADDRESS VM_MAX_ADDRESS
|
define VM_MAX_ADDRESS VM_MAX_ADDRESS
|
||||||
|
|
||||||
# Register offsets, for stack frames.
|
# Register offsets, for stack frames.
|
||||||
|
|
Loading…
Reference in New Issue