diff options
author | Fred Fish <fnf@specifix.com> | 1992-03-18 16:43:25 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-03-18 16:43:25 +0000 |
commit | b0246b3bece330a13b5ddaba60686c550ec553d1 (patch) | |
tree | d2897f2d8d2d3e8d2403fa9f46b66c9935e52418 /gdb/remote-vx.c | |
parent | afbdd10672f1c5bf0403c1d174fd2a9e0aaadd9a (diff) | |
download | gdb-b0246b3bece330a13b5ddaba60686c550ec553d1.zip gdb-b0246b3bece330a13b5ddaba60686c550ec553d1.tar.gz gdb-b0246b3bece330a13b5ddaba60686c550ec553d1.tar.bz2 |
Changes to implement the -mapped and -readnow options for commands that
read symbol tables.
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r-- | gdb/remote-vx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index ac92e2f..8e90cb5 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -715,7 +715,7 @@ vx_load_command (arg_string, from_tty) immediate_quit--; /* FIXME, for now we ignore data_addr and bss_addr. */ - (void) symbol_file_add (arg_string, from_tty, text_addr, 0); + (void) symbol_file_add (arg_string, from_tty, text_addr, 0, 0); } #ifdef FIXME /* Not ready for prime time */ @@ -1039,7 +1039,7 @@ add_symbol_stub (arg) struct ldfile *pLoadFile = (struct ldfile *)arg; printf("\t%s: ", pLoadFile->name); - (void) symbol_file_add (pLoadFile->name, 0, pLoadFile->txt_addr, 0); + (void) symbol_file_add (pLoadFile->name, 0, pLoadFile->txt_addr, 0, 0); printf ("ok\n"); return 1; } |