summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: eb165c5)
raw | patch | inline | side by side (parent: eb165c5)
author | Sven Trenkel <collectd@semidefinite.de> | |
Mon, 15 Aug 2016 18:55:44 +0000 (18:55 +0000) | ||
committer | Sven Trenkel <collectd@semidefinite.de> | |
Mon, 15 Aug 2016 18:55:44 +0000 (18:55 +0000) |
src/python.c | patch | blob | history |
diff --git a/src/python.c b/src/python.c
index a555734fa2addd0c9d163a294c73b6243cd70590..94058421fbe053874befb6190d9c9b7cd9bed723 100644 (file)
--- a/src/python.c
+++ b/src/python.c
@@ -805,8 +805,8 @@ static PyObject *cpy_unregister_generic(cpy_callback_t **list_head, PyObject *ar
PyErr_Format(PyExc_RuntimeError, "Unable to unregister %s callback '%s'.", desc, name);
return NULL;
}
- /* Yes, this is actually save. To call this function the caller has to
- * hold the GIL. Well, save as long as there is only one GIL anyway ... */
+ /* Yes, this is actually safe. To call this function the caller has to
+ * hold the GIL. Well, safe as long as there is only one GIL anyway ... */
if (prev == NULL)
*list_head = tmp->next;
else
@@ -815,6 +815,15 @@ static PyObject *cpy_unregister_generic(cpy_callback_t **list_head, PyObject *ar
Py_RETURN_NONE;
}
+static void cpy_unregister_list(cpy_callback_t **list_head) {
+ cpy_callback_t *cur, *next;
+ for (cur = *list_head; cur; cur = next) {
+ next = cur->next;
+ cpy_destroy_user_data(cur);
+ }
+ *list_head = NULL;
+}
+
typedef int cpy_unregister_function_t(const char *name);
static PyObject *cpy_unregister_generic_userdata(cpy_unregister_function_t *unreg, PyObject *arg, const char *desc) {
Py_DECREF(ret);
}
PyErr_Print();
+
+ cpy_unregister_list(&cpy_config_callbacks);
+ cpy_unregister_list(&cpy_init_callbacks);
+ cpy_unregister_list(&cpy_shutdown_callbacks);
+
Py_Finalize();
return 0;
}
if (PyImport_ImportModule("readline") == NULL) {
/* This interactive session will suck. */
cpy_log_exception("interactive session init");
- }
+ }
cur_sig = PyOS_setsig(SIGINT, python_sigint_handler);
/* We totally forked just now. Everyone saw that, right? */
PyOS_AfterFork();