diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2006-11-21 16:50:16 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2006-11-21 16:50:16 +0000 |
commit | 4b5752d02f5e21329ae17790fd766b5f2df0d362 (patch) | |
tree | 196c10beb13b46ae12ccffd79affbbba5dbbca2c /gdb/ChangeLog | |
parent | bce613b9bfac3b56f4f9742776db11aeec875300 (diff) | |
download | gdb-4b5752d02f5e21329ae17790fd766b5f2df0d362.zip gdb-4b5752d02f5e21329ae17790fd766b5f2df0d362.tar.gz gdb-4b5752d02f5e21329ae17790fd766b5f2df0d362.tar.bz2 |
gdb/
* memattr.h (enum mem_access_mode): New value
MEM_NONE.
* memattr.c (unknown_mem_attrib): New.
(inaccessible_by_default): New.
(show_inaccessible_by_default): New.
(lookup_mem_region): Check inaccessible_by_default.
(dummy_cmd): New.
(mem_set_cmdlist, mem_show_cmdlist): New.
(_initialize_mem): Register new "set" and "show"
commands.
* target.c (memory_xfer_partial): If memory type
is MEM_NONE, return an error.
Clip to region size when calling to_xfer_partial.
If upper limit of memory range is 0, don't clip
anything.
gdb/doc/
* gdb.texinfo (Memory Access Checking): New.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4726e26..2f6ef8d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,21 @@ +2006-11-21 Vladimir Prus <vladimir@codesourcery.com> + + * memattr.h (enum mem_access_mode): New value + MEM_NONE. + * memattr.c (unknown_mem_attrib): New. + (inaccessible_by_default): New. + (show_inaccessible_by_default): New. + (lookup_mem_region): Check inaccessible_by_default. + (dummy_cmd): New. + (mem_set_cmdlist, mem_show_cmdlist): New. + (_initialize_mem): Register new "set" and "show" + commands. + * target.c (memory_xfer_partial): If memory type + is MEM_NONE, return an error. + Clip to region size when calling to_xfer_partial. + If upper limit of memory range is 0, don't clip + anything. + 2006-11-20 Joel Brobecker <brobecker@adacore.com> * README: Remove obsolete information. |