diff options
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 6cff2ca..381a6d6 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -310,6 +310,9 @@ struct objfile struct obj_section *sections, *sections_end; + + /* two auxiliary fields, used to hold the fp of separate symbol files */ + FILE *auxf1, *auxf2; }; /* Defines for the objfile flag word. */ @@ -370,6 +373,8 @@ extern void free_objfile PARAMS ((struct objfile *)); extern void free_all_objfiles PARAMS ((void)); +extern struct objfile * find_pc_objfile PARAMS ((CORE_ADDR)); + extern void objfile_relocate PARAMS ((struct objfile *, struct section_offsets *)); |