Print the address associated with an examine. Changed db_maxoff to

something more reasonable (64k). Suggested by Gordon Ross about a
year ago.
This commit is contained in:
David Greenman 1995-05-22 13:07:12 +00:00
parent 956455631c
commit 751b0b8e10
2 changed files with 6 additions and 13 deletions

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_examine.c,v 1.5 1994/08/13 03:49:17 wollman Exp $
* $Id: db_examine.c,v 1.6 1994/08/18 22:34:22 wollman Exp $
*/
/*
@ -108,16 +108,9 @@ db_examine(addr, fmt, count)
break;
default:
if (db_print_position() == 0) {
/* If we hit a new symbol, print it */
char * name;
db_expr_t off;
db_find_sym_and_offset(addr, &name, &off);
if (off == 0)
db_printf("%s:\t", name);
else
db_printf("\t\t");
/* Print the address. */
db_printsym(addr, DB_STGY_ANY);
db_printf(":\t");
db_prev = addr;
}

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_sym.c,v 1.6 1994/08/20 03:48:26 davidg Exp $
* $Id: db_sym.c,v 1.7 1994/09/27 03:34:57 phk Exp $
*/
/*
@ -281,7 +281,7 @@ db_symbol_values(sym, namep, valuep)
* not accept symbols whose value is zero (and use plain hex).
*/
unsigned int db_maxoff = 0x10000000;
unsigned int db_maxoff = 0x10000;
void
db_printsym(off, strategy)