diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2009-06-16 18:49:25 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2009-06-16 18:49:25 +0000 |
commit | 7eedccfa2afb7a44b513282cb138d85cde1f7f41 (patch) | |
tree | ca021f970e20247ff72764df9982ce692250b94d /gdb/rs6000-nat.c | |
parent | 19ef5c713c0116f2e15fea28168614d7894b613a (diff) | |
download | gdb-7eedccfa2afb7a44b513282cb138d85cde1f7f41.zip gdb-7eedccfa2afb7a44b513282cb138d85cde1f7f41.tar.gz gdb-7eedccfa2afb7a44b513282cb138d85cde1f7f41.tar.bz2 |
2009-06-16 Paul Pluzhnikov <ppluzhnikov@google.com>
* solib.c (symbol_add_stub): New FLAGS parameter.
(solib_read_symbols): FROM_TTY -> FLAGS, call symbol_add_stub
directly.
(solib_add): Defer breakpoint_re_set until after all solibs.
* bsd-uthread.c (bsd_uthread_solib_loaded): Adjust.
* rs6000-nat.c (objfile_symbol_add): Adjust.
* symfile.c (syms_from_objfile): Merge parameters into ADD_FLAGS.
(new_symfile_objfile): Likewise.
(symbol_file_add_with_addrs_or_offsets): Likewise.
(symbol_file_add_from_bfd): Likewise.
(symbol_file_add): Likewise.
* symfile.h (enum symfile_add_flags): New. Adjust prototypes.
* symfile-mem.c (symbol_file_add_from_memory): Adjust.
* windows-nat.c (safe_symbol_file_add_stub): Adjust.
* machoread.c (macho_oso_symfile, macho_symfile_read): Adjust.
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index a786657..3849ce3 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -691,8 +691,8 @@ objfile_symbol_add (void *arg) { struct objfile *obj = (struct objfile *) arg; - syms_from_objfile (obj, NULL, 0, 0, 0, 0); - new_symfile_objfile (obj, 0, 0); + syms_from_objfile (obj, NULL, 0, 0, 0); + new_symfile_objfile (obj, 0); return 1; } |