summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-02-27 01:40:36 +0000
committerAndrew Cagney <cagney@redhat.com>2002-02-27 01:40:36 +0000
commit0353c1f28af6cdf2c0fcbf2ce61aa0376f685eed (patch)
tree9fcf915e6c802da8dde03c740d88805ac8b54221
parentf992b3e05722865e276c14a17ce0021f02c77179 (diff)
downloadgdb-0353c1f28af6cdf2c0fcbf2ce61aa0376f685eed.tar.gz
* 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.
-rw-r--r--gdb/ChangeLog10
-rw-r--r--gdb/corelow.c4
-rw-r--r--gdb/irix5-nat.c2
-rw-r--r--gdb/memattr.c18
-rw-r--r--gdb/osfsolib.c2
-rw-r--r--gdb/solib.c2
-rw-r--r--gdb/symfile.c2
7 files changed, 25 insertions, 15 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 4dc3e5be469..b897c32ae6f 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,15 @@
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
``E'' step out-of-range packets.
diff --git a/gdb/corelow.c b/gdb/corelow.c
index 59318b179a6..68219c512c6 100644
--- a/gdb/corelow.c
+++ b/gdb/corelow.c
@@ -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
diff --git a/gdb/irix5-nat.c b/gdb/irix5-nat.c
index c3543b19869..459abe3879c 100644
--- a/gdb/irix5-nat.c
+++ b/gdb/irix5-nat.c
@@ -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))
{
diff --git a/gdb/memattr.c b/gdb/memattr.c
index 8d7b0d8c558..7387e8d830d 100644
--- a/gdb/memattr.c
+++ b/gdb/memattr.c
@@ -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
diff --git a/gdb/osfsolib.c b/gdb/osfsolib.c
index 2ef7947676b..345ab0831a9 100644
--- a/gdb/osfsolib.c
+++ b/gdb/osfsolib.c
@@ -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))
{
diff --git a/gdb/solib.c b/gdb/solib.c
index 2aa87e34208..c47c438d99e 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -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 */
diff --git a/gdb/symfile.c b/gdb/symfile.c
index ebdd62baff7..feca03b6d94 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -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))
{