aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-micmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-micmd.c')
-rw-r--r--gdb/python/py-micmd.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/python/py-micmd.c b/gdb/python/py-micmd.c
index c7c5a60..e86807d 100644
--- a/gdb/python/py-micmd.c
+++ b/gdb/python/py-micmd.c
@@ -595,7 +595,7 @@ micmdpy_dealloc (PyObject *obj)
/* Python initialization for the MI commands components. */
-int
+static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
gdbpy_initialize_micommands ()
{
micmdpy_object_type.tp_new = PyType_GenericNew;
@@ -614,7 +614,9 @@ gdbpy_initialize_micommands ()
return 0;
}
-void
+/* Cleanup just before GDB shuts down the Python interpreter. */
+
+static void
gdbpy_finalize_micommands ()
{
/* mi_command_py objects hold references to micmdpy_object objects. They must
@@ -737,3 +739,5 @@ _initialize_py_micmd ()
show_pymicmd_debug,
&setdebuglist, &showdebuglist);
}
+
+GDBPY_INITIALIZE_FILE (gdbpy_initialize_micommands, gdbpy_finalize_micommands);