X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/39ae014f3bc3328db36e16b63c4e79c462ef4ff2..e16e573b57db05c051a165bbdb5c56af3cd088d7:/src/background.c diff --git a/src/background.c b/src/background.c index 1d6a9c5d..b388fb59 100644 --- a/src/background.c +++ b/src/background.c @@ -23,6 +23,7 @@ #include #include "background.h" +#include "settings.h" static GThreadPool *thread_pool = NULL; static gboolean stop_all_threads = FALSE; @@ -218,6 +219,8 @@ static void bgwindow_response (GtkDialog *dialog, gint arg1 ) gtk_widget_hide ( bgwindow ); } +#define VIK_SETTINGS_BACKGROUND_MAX_THREADS "background_max_threads" + /** * a_background_init: * @@ -226,8 +229,11 @@ static void bgwindow_response (GtkDialog *dialog, gint arg1 ) void a_background_init() { /* initialize thread pool */ - /* TODO parametrize this via preference and/or command line arg */ gint max_threads = 10; /* limit maximum number of threads running at one time */ + gint maxt; + if ( a_settings_get_integer ( VIK_SETTINGS_BACKGROUND_MAX_THREADS, &maxt ) ) + max_threads = maxt; + thread_pool = g_thread_pool_new ( (GFunc) thread_helper, NULL, max_threads, FALSE, NULL ); GtkCellRenderer *renderer; @@ -285,6 +291,11 @@ void a_background_uninit() /* wait until all running threads stop */ stop_all_threads = TRUE; g_thread_pool_free ( thread_pool, TRUE, TRUE ); + + gtk_list_store_clear ( bgstore ); + g_object_unref ( bgstore ); + + gtk_widget_destroy ( bgwindow ); } void a_background_add_window (VikWindow *vw)