Module Name: src Committed By: skrll Date: Sat Jan 22 20:24:48 UTC 2011
Modified Files: src/sys/arch/hppa/hppa: db_interface.c Log Message: A couple more registers and their common usage. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/arch/hppa/hppa/db_interface.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/hppa/hppa/db_interface.c diff -u src/sys/arch/hppa/hppa/db_interface.c:1.25 src/sys/arch/hppa/hppa/db_interface.c:1.26 --- src/sys/arch/hppa/hppa/db_interface.c:1.25 Sat Jan 22 19:35:48 2011 +++ src/sys/arch/hppa/hppa/db_interface.c Sat Jan 22 20:24:48 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: db_interface.c,v 1.25 2011/01/22 19:35:48 skrll Exp $ */ +/* $NetBSD: db_interface.c,v 1.26 2011/01/22 20:24:48 skrll Exp $ */ /* $OpenBSD: db_interface.c,v 1.16 2001/03/22 23:31:45 mickey Exp $ */ @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.25 2011/01/22 19:35:48 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.26 2011/01/22 20:24:48 skrll Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -62,8 +62,8 @@ const struct db_variable db_regs[] = { { "flags", (long *)&ddb_regs.tf_flags, FCN_NULL }, { "r1", (long *)&ddb_regs.tf_r1, FCN_NULL }, - { "rp", (long *)&ddb_regs.tf_rp, FCN_NULL }, - { "r3", (long *)&ddb_regs.tf_r3, FCN_NULL }, + { "r2(rp)", (long *)&ddb_regs.tf_rp, FCN_NULL }, + { "r3(fp)", (long *)&ddb_regs.tf_r3, FCN_NULL }, { "r4", (long *)&ddb_regs.tf_r4, FCN_NULL }, { "r5", (long *)&ddb_regs.tf_r5, FCN_NULL }, { "r6", (long *)&ddb_regs.tf_r6, FCN_NULL },