X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtksearchenginesimple.c;h=8d0e07f44e6afbca06b0b6683cc22d9193d88cea;hb=32825a66ac8e65bf98cafed26a339fa1f31eddd4;hp=20698b2543b3f74ee8877c23411cfdb731771ec8;hpb=2cc059a0e7ee382606351355780b53ae6a7229d9;p=~andy%2Fgtk diff --git a/gtk/gtksearchenginesimple.c b/gtk/gtksearchenginesimple.c index 20698b254..8d0e07f44 100644 --- a/gtk/gtksearchenginesimple.c +++ b/gtk/gtksearchenginesimple.c @@ -12,8 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * License along with this library. If not, see . * * Author: Alexander Larsson * @@ -27,8 +26,8 @@ * export ftw() and friends only if _XOPEN_SOURCE and _GNU_SOURCE * are defined. see bug #444097. */ -#define _XOPEN_SOURCE 500 -#define _GNU_SOURCE +#define _XOPEN_SOURCE 600 +#define _GNU_SOURCE #ifdef HAVE_FTW_H #include @@ -168,8 +167,7 @@ search_thread_add_hits_idle (gpointer user_data) hits->uris); } - g_list_foreach (hits->uris, (GFunc)g_free, NULL); - g_list_free (hits->uris); + g_list_free_full (hits->uris, g_free); g_free (hits); return FALSE; @@ -194,7 +192,7 @@ send_batch (SearchThreadData *data) data->uri_hits = NULL; } -static GStaticPrivate search_thread_data = G_STATIC_PRIVATE_INIT; +static GPrivate search_thread_data; #ifdef HAVE_FTW_H static int @@ -205,13 +203,13 @@ search_visit_func (const char *fpath, { SearchThreadData *data; gint i; - const gchar *name; + const gchar *name; gchar *lower_name; gchar *uri; gboolean hit; gboolean is_hidden; - - data = (SearchThreadData*)g_static_private_get (&search_thread_data); + + data = (SearchThreadData*)g_private_get (&search_thread_data); if (data->cancelled) #ifdef HAVE_GNU_FTW @@ -276,7 +274,7 @@ search_thread_func (gpointer user_data) data = user_data; - g_static_private_set (&search_thread_data, data, NULL); + g_private_set (&search_thread_data, data); nftw (data->path, search_visit_func, 20, #ifdef HAVE_GNU_FTW @@ -308,7 +306,7 @@ gtk_search_engine_simple_start (GtkSearchEngine *engine) data = search_thread_data_new (simple, simple->priv->query); - g_thread_create (search_thread_func, data, FALSE, NULL); + g_thread_unref (g_thread_new ("file-search", search_thread_func, data)); simple->priv->active_search = data; }