aboutsummaryrefslogtreecommitdiff
path: root/gdb/NEWS
diff options
context:
space:
mode:
authorPhil Muldoon <pmuldoon@redhat.com>2010-08-03 09:38:16 +0000
committerPhil Muldoon <pmuldoon@redhat.com>2010-08-03 09:38:16 +0000
commit585d1eb8a8b514120431298eeb64510448832e85 (patch)
tree806dacd4ff2a948657c4c751a703dbdd1771c212 /gdb/NEWS
parent562131722825e18cba3a5d7411f9b37e14095e35 (diff)
downloadbinutils-585d1eb8a8b514120431298eeb64510448832e85.zip
binutils-585d1eb8a8b514120431298eeb64510448832e85.tar.gz
binutils-585d1eb8a8b514120431298eeb64510448832e85.tar.bz2
2010-08-03 Phil Muldoon <pmuldoon@redhat.com>
* NEWS: Document Python value inferior function calls.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r--gdb/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/NEWS b/gdb/NEWS
index 0aea3fb..73f79a5 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -3,6 +3,15 @@
*** Changes since GDB 7.2
+* Python scripting
+
+ ** GDB values in Python are now callable if the value represents a
+ function. For example, if 'some_value' represents a function that
+ takes two integer parameters and returns a value, you can call
+ that function like so:
+
+ result = some_value (10,20)
+
* GDB now has some support for using labels in the program's source in
linespecs. For instance, you can use "advance label" to continue
execution to a label.