summaryrefslogtreecommitdiff
path: root/client/gvfsfusedaemon.c
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2011-10-26 14:12:13 +0200
committerTomas Bzatek <tbzatek@redhat.com>2011-10-26 14:12:13 +0200
commit008031adbe2fd118a4e9a3c7219a9777cab1bb75 (patch)
tree065c1474d584dd9c95f8a0be16c3d25dedbe4803 /client/gvfsfusedaemon.c
parent185c4ac9c83aac035d2b49ecd95130aa5167e7c2 (diff)
downloadgvfs-008031adbe2fd118a4e9a3c7219a9777cab1bb75.tar.gz
Adapt to glib thread API changes
Last piece in order to fix https://bugzilla.gnome.org/show_bug.cgi?id=661148
Diffstat (limited to 'client/gvfsfusedaemon.c')
-rw-r--r--client/gvfsfusedaemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gvfsfusedaemon.c b/client/gvfsfusedaemon.c
index c986f691..5e79638d 100644
--- a/client/gvfsfusedaemon.c
+++ b/client/gvfsfusedaemon.c
@@ -2358,7 +2358,7 @@ vfs_init (struct fuse_conn_info *conn)
volume_monitor = g_object_new (g_type_from_name ("GDaemonVolumeMonitor"), NULL);
subthread_main_loop = g_main_loop_new (NULL, FALSE);
- subthread = g_thread_create ((GThreadFunc) subthread_main, NULL, FALSE, NULL);
+ subthread = g_thread_new ("gvfs-fuse-sub", (GThreadFunc) subthread_main, NULL);
/* Indicate O_TRUNC support for open() */
conn->want |= FUSE_CAP_ATOMIC_O_TRUNC;