diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-19 19:56:02 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-19 19:56:02 +0000 |
commit | dfdb8b49e73551dafe81e3c00a862730126e1e6b (patch) | |
tree | d254393619ae991078a26be8269a2935da14cf88 /gdb/objfiles.h | |
parent | 41c11350289d2b88d0661ad71faf5d22e094397d (diff) | |
download | gdb-dfdb8b49e73551dafe81e3c00a862730126e1e6b.tar.gz |
2004-01-19 Andrew Cagney <cagney@redhat.com>
* top.h (mapped_symbol_files): Delete declaration.
* main.c (captured_main): Delete option "m" and "mapped".
* objfiles.c (mapped_symbol_files): Delete variable.
* symfile.c (symbol_file_command): Delete mmap code.
(symbol_file_add_with_addrs_or_offsets): Ditto.
(add_symbol_file_command, reread_separate_symbols): Ditto.
* objfiles.h (OBJF_MAPPED): Delete.
* objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
(free_objfile) [USE_MMALLOC]: Ditto.
(open_existing_mapped_file): Delete function.
(open_mapped_file): Delete function.
(map_to_file): Delete function.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index ebc10b36828..732af4d3d01 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -470,15 +470,6 @@ struct objfile /* Defines for the objfile flag word. */ -/* Gdb can arrange to allocate storage for all objects related to a - particular objfile in a designated section of its address space, - managed at a low level by mmap() and using a special version of - malloc that handles malloc/free/realloc on top of the mmap() interface. - This allows the "internal gdb state" for a particular objfile to be - dumped to a gdb state file and subsequently reloaded at a later time. */ - -#define OBJF_MAPPED (1 << 0) /* Objfile data is mmap'd */ - /* When using mapped/remapped predigested gdb symbol information, we need a flag that indicates that we have previously done an initial symbol table read from this particular objfile. We can't just look for the |