mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* memattr.c (mem_command): Eliminate `true'' and
`false''.
* osfsolib.c (solib_map_sections): Ditto. * irix5-nat.c (solib_map_sections): Ditto. * corelow.c (gdb_check_format): Ditto. * symfile.c (symfile_bfd_open): Ditto. * solib.c (solib_map_sections): Ditto. Partially fix PR gdb/354.
This commit is contained in:
parent
0f017ab98f
commit
81a9a963a1
@ -1,3 +1,13 @@
|
||||
2002-02-26 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* memattr.c (mem_command): Eliminate ``true'' and ``false''.
|
||||
* osfsolib.c (solib_map_sections): Ditto.
|
||||
* irix5-nat.c (solib_map_sections): Ditto.
|
||||
* corelow.c (gdb_check_format): Ditto.
|
||||
* symfile.c (symfile_bfd_open): Ditto.
|
||||
* solib.c (solib_map_sections): Ditto.
|
||||
Fix PR gdb/354.
|
||||
|
||||
2002-02-26 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* remote.c (_initialize_remote): By default, disable ``e'' and
|
||||
|
@ -169,10 +169,10 @@ gdb_check_format (bfd *abfd)
|
||||
{
|
||||
if (cf->check_format (abfd))
|
||||
{
|
||||
return (true);
|
||||
return (1);
|
||||
}
|
||||
}
|
||||
return (false);
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* Discard all vestiges of any previous core file and mark data and stack
|
||||
|
@ -434,7 +434,7 @@ solib_map_sections (void *arg)
|
||||
}
|
||||
/* Leave bfd open, core_xfer_memory and "info files" need it. */
|
||||
so->abfd = abfd;
|
||||
abfd->cacheable = true;
|
||||
abfd->cacheable = 1;
|
||||
|
||||
if (!bfd_check_format (abfd, bfd_object))
|
||||
{
|
||||
|
@ -31,9 +31,9 @@ const struct mem_attrib default_mem_attrib =
|
||||
{
|
||||
MEM_RW, /* mode */
|
||||
MEM_WIDTH_UNSPECIFIED,
|
||||
false, /* hwbreak */
|
||||
false, /* cache */
|
||||
false /* verify */
|
||||
0, /* hwbreak */
|
||||
0, /* cache */
|
||||
0 /* verify */
|
||||
};
|
||||
|
||||
static struct mem_region *mem_region_chain = NULL;
|
||||
@ -183,21 +183,21 @@ mem_command (char *args, int from_tty)
|
||||
|
||||
#if 0
|
||||
else if (strcmp (tok, "hwbreak") == 0)
|
||||
attrib.hwbreak = true;
|
||||
attrib.hwbreak = 1;
|
||||
else if (strcmp (tok, "swbreak") == 0)
|
||||
attrib.hwbreak = false;
|
||||
attrib.hwbreak = 0;
|
||||
#endif
|
||||
|
||||
else if (strcmp (tok, "cache") == 0)
|
||||
attrib.cache = true;
|
||||
attrib.cache = 1;
|
||||
else if (strcmp (tok, "nocache") == 0)
|
||||
attrib.cache = false;
|
||||
attrib.cache = 0;
|
||||
|
||||
#if 0
|
||||
else if (strcmp (tok, "verify") == 0)
|
||||
attrib.verify = true;
|
||||
attrib.verify = 1;
|
||||
else if (strcmp (tok, "noverify") == 0)
|
||||
attrib.verify = false;
|
||||
attrib.verify = 0;
|
||||
#endif
|
||||
|
||||
else
|
||||
|
@ -253,7 +253,7 @@ solib_map_sections (char *arg)
|
||||
}
|
||||
/* Leave bfd open, core_xfer_memory and "info files" need it. */
|
||||
so->abfd = abfd;
|
||||
abfd->cacheable = true;
|
||||
abfd->cacheable = 1;
|
||||
|
||||
if (!bfd_check_format (abfd, bfd_object))
|
||||
{
|
||||
|
@ -237,7 +237,7 @@ solib_map_sections (PTR arg)
|
||||
|
||||
/* Leave bfd open, core_xfer_memory and "info files" need it. */
|
||||
so->abfd = abfd;
|
||||
abfd->cacheable = true;
|
||||
abfd->cacheable = 1;
|
||||
|
||||
/* copy full path name into so_name, so that later symbol_file_add
|
||||
can find it */
|
||||
|
@ -1094,7 +1094,7 @@ symfile_bfd_open (char *name)
|
||||
error ("\"%s\": can't open to read symbols: %s.", name,
|
||||
bfd_errmsg (bfd_get_error ()));
|
||||
}
|
||||
sym_bfd->cacheable = true;
|
||||
sym_bfd->cacheable = 1;
|
||||
|
||||
if (!bfd_check_format (sym_bfd, bfd_object))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user