diff options
Diffstat (limited to 'gdb/python/py-evts.c')
-rw-r--r-- | gdb/python/py-evts.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/python/py-evts.c b/gdb/python/py-evts.c index a7daf8a..d08b14b 100644 --- a/gdb/python/py-evts.c +++ b/gdb/python/py-evts.c @@ -76,6 +76,9 @@ gdbpy_initialize_py_events (void) if (add_new_registry (&gdb_py_events.new_objfile, "new_objfile") < 0) return -1; + if (add_new_registry (&gdb_py_events.clear_objfiles, "clear_objfiles") < 0) + return -1; + if (gdb_pymodule_addobject (gdb_module, "events", (PyObject *) gdb_py_events.module) < 0) |