gdb/
authorKazu Hirata <kazu@codesourcery.com>
Thu, 11 Oct 2007 20:12:04 +0000 (20:12 +0000)
committerKazu Hirata <kazu@codesourcery.com>
Thu, 11 Oct 2007 20:12:04 +0000 (20:12 +0000)
* memattr.c (inaccessible_by_default): Change the initial
value to 1.

gdb/doc/
* gdb.texinfo: Mention that inaccessible-by-default is on by
default.

gdb/ChangeLog
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/memattr.c

index f4eb180cdfbef6a99954ea6e56a048d41a84c4ba..7408d080ba8828585b5b843adeec667b1a6fb3d7 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-11  Kazu Hirata  <kazu@codesourcery.com>
+
+       * memattr.c (inaccessible_by_default): Change the initial
+       value to 1.
+
 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
 
        PR gdb/2280
index 7222c04620f94c2888261bc63753e439572b66b6..68474c268d02bbe3abb0e952fd037fb0e99d16be 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-11  Kazu Hirata  <kazu@codesourcery.com>
+
+       * gdb.texinfo: Mention that inaccessible-by-default is on by
+       default.
+
 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * gdbint.texinfo (Target Conditionals): Remove VARIABLES_INSIDE_BLOCK.
index fac3f678119009dd16846dc38429ac2590ed4032..468d600c383b94f2a8e3e7e4f04970ecce5166a5 100644 (file)
@@ -7022,7 +7022,7 @@ explicitly described by the memory ranges as non-existent and refuse accesses
 to such memory.  The checks are only performed if there's at least one
 memory range defined.  If @code{off} is specified, make @value{GDBN}
 treat the memory not explicitly described by the memory ranges as RAM.
-The default value is @code{off}.
+The default value is @code{on}.
 @kindex show mem inaccessible-by-default
 @item show mem inaccessible-by-default
 Show the current handling of accesses to unknown memory.
index 0b599d4b1b804be3fb61fa763a6419dbdcc633aa..c4c3d6768c3a18d50d72e8771c6c8ef66456e2b0 100644 (file)
@@ -65,7 +65,7 @@ static int target_mem_regions_valid;
 /* If this flag is set, gdb will assume that memory ranges not
    specified by the memory map have type MEM_NONE, and will
    emit errors on all accesses to that memory.  */
-static int inaccessible_by_default = 0;
+static int inaccessible_by_default = 1;
 
 static void
 show_inaccessible_by_default (struct ui_file *file, int from_tty,