+2015-02-11 Doug Evans <dje@google.com>
+
+ * symfile.h (new_symfile_objfile): Delete.
+ * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
+ All callers updated.
+
2015-02-11 Patrick Palka <patrick@parcs.ath.cx>
* tui/tui-io.c (tui_handle_resize_during_io): Call
symbols for a new objfile, or mapping in the symbols from a reusable
objfile. ADD_FLAGS is a bitmask of enum symfile_add_flags. */
-void
-new_symfile_objfile (struct objfile *objfile, int add_flags)
+static void
+finish_new_objfile (struct objfile *objfile, int add_flags)
{
/* If this is the main symbol file we have to clean up all users of the
old main symbol file. Otherwise it is sufficient to fixup all the
return objfile; /* No symbols. */
}
- new_symfile_objfile (objfile, add_flags);
+ finish_new_objfile (objfile, add_flags);
observer_notify_new_objfile (objfile);
SYMFILE_NO_READ = 1 << 4
};
-extern void new_symfile_objfile (struct objfile *, int);
-
extern struct objfile *symbol_file_add (const char *, int,
struct section_addr_info *, int);