From 567c190e2924dd7bd4314f5a85bb7901e60edce7 Mon Sep 17 00:00:00 2001 From: Benedikt Meurer <benny@xfce.org> Date: Sun, 31 Dec 2006 09:42:39 +0000 Subject: [PATCH] 2006-12-31 Benedikt Meurer <benny@xfce.org> * thunar-vfs/thunar-vfs.c(_thunar_vfs_init): Do not maintain more than four unused threads, and stop unused threads after ten seconds of idle time (requires GLib 2.10). (Old svn revision: 24225) --- ChangeLog | 9 ++++++--- thunar-vfs/thunar-vfs.c | 8 ++++++++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 733be370a..243dad3ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-12-31 Benedikt Meurer <benny@xfce.org> + + * thunar-vfs/thunar-vfs.c(_thunar_vfs_init): Do not maintain more than + four unused threads, and stop unused threads after ten seconds of + idle time (requires GLib 2.10). + 2006-12-29 Benedikt Meurer <benny@xfce.org> * thunar-vfs/thunar-vfs-io-local-xfer.c, @@ -8,9 +14,6 @@ thunar-vfs/thunar-vfs-transfer-job.c: Add _thunar_vfs_path_child() as internal implementation of thunar_vfs_path_relative(), that does not perform the expensive sanity checking for release builds. - * thunar-vfs/thunar-vfs.c(_thunar_vfs_init): Do not maintain more than - four unused threads, and stop unused threads after ten seconds of - idle time (requires GLib 2.10). * thunar-vfs/thunar-vfs-io-local.{c,h}: List folders parallel again, with up to four threads collecting file infos at the same time. Additionally, in order to avoid the costly inode lookups when diff --git a/thunar-vfs/thunar-vfs.c b/thunar-vfs/thunar-vfs.c index b1750e615..139a260e7 100644 --- a/thunar-vfs/thunar-vfs.c +++ b/thunar-vfs/thunar-vfs.c @@ -78,6 +78,14 @@ thunar_vfs_init (void) /* initialize the jobs framework */ _thunar_vfs_job_init (); + + /* do not maintain more than 4 unused threads */ + g_thread_pool_set_max_unused_threads (4); + +#if GLIB_CHECK_VERSION(2,10,0) + /* stop unused threads after 10 seconds of idle time */ + g_thread_pool_set_max_idle_time (10 * 1000); +#endif } } -- GitLab