aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@sourceware.org>2012-03-22 08:10:44 +0000
committerSiva Chandra Reddy <sivachandra@sourceware.org>2012-03-22 08:10:44 +0000
commit7b282c5acc13f099b11a670de50fd52a0d81ea40 (patch)
treee5bac62553f4956c81aeeb122242d209be04e978 /gdb/ChangeLog
parent0c83539f7ebce5901201956bebd1bef925e5c5f4 (diff)
downloadgdb-7b282c5acc13f099b11a670de50fd52a0d81ea40.zip
gdb-7b282c5acc13f099b11a670de50fd52a0d81ea40.tar.gz
gdb-7b282c5acc13f099b11a670de50fd52a0d81ea40.tar.bz2
2012-03-14 Siva Chandra <sivachandra@google.com>
Python scripting: Add new method Value.referenced_value to gdb.Value which can dereference pointer as well as reference values. * NEWS: Add entry under 'Python scripting' about the new method Value.referenced_value on gdb.Value objects. * python/py-value.c (valpy_referenced_value): New function defining a new method on gdb.Value objects which can dereference pointer and reference values. * testsuite/gdb.python/py-value.cc: Add test case for testing the methodology exposing C++ values to Python. * testsuite/gdb.python/py-value-cc.exp: Add tests testing the methodology exposing C++ values to Python. * testsuite/gdb.python/Makefile.in: Add py-value-cc to EXECUTABLES. * docs/gdb.texinfo (Python API/Values From Inferior): Add description about the new method Value.referenced_value. Add description on how Value.dereference is different (and similar) to Value.referenced_value.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3380c2b..7c653be 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,16 @@
2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
+ Python scripting: Add new method Value.referenced_value to
+ gdb.Value which can dereference pointer as well as reference
+ values.
+ * NEWS: Add entry under 'Python scripting' about the new method
+ Value.referenced_value on gdb.Value objects.
+ * python/py-value.c (valpy_referenced_value): New function
+ defining a new method on gdb.Value objects which can dereference
+ pointer and reference values.
+
+2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
+
* MAINTAINERS (Write After Approval): Add myself to the list.
2012-03-21 Kevin Buettner <kevinb@redhat.com>