diff options
Diffstat (limited to 'gdb/python/py-value.c')
-rw-r--r-- | gdb/python/py-value.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index d6ceb54..6401d96 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -2012,6 +2012,14 @@ gdbpy_add_history (PyObject *self, PyObject *args) return nullptr; } +/* Return an integer, the number of items in GDB's history. */ + +PyObject * +gdbpy_history_count (PyObject *self, PyObject *args) +{ + return gdb_py_object_from_ulongest (value_history_count ()).release (); +} + /* Return the value of a convenience variable. */ PyObject * gdbpy_convenience_variable (PyObject *self, PyObject *args) |