summaryrefslogtreecommitdiff
path: root/gio/tests/gdbus-threading.c
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2011-10-13 00:43:33 -0400
committerRyan Lortie <desrt@desrt.ca>2011-10-13 00:43:33 -0400
commit015f4b4513279c4be40c03121473ffcea347ed84 (patch)
tree217484a9870e1e092bb409ffb5e7f02c3114d7e1 /gio/tests/gdbus-threading.c
parentb0e73ca390d0f22baccc3636dd4d2e8e9cb0f58f (diff)
thread: nuke the concept of 'joinable'
And remove the 'joinable' argument from g_thread_new() and g_thread_new_full(). Change the wording in the docs. Clarify expectations for (deprecated) g_thread_create().
Diffstat (limited to 'gio/tests/gdbus-threading.c')
-rw-r--r--gio/tests/gdbus-threading.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gio/tests/gdbus-threading.c b/gio/tests/gdbus-threading.c
index 71acda2df..d77b57825 100644
--- a/gio/tests/gdbus-threading.c
+++ b/gio/tests/gdbus-threading.c
@@ -236,7 +236,6 @@ test_delivery_in_thread (void)
thread = g_thread_new ("deliver",
test_delivery_in_thread_func,
NULL,
- TRUE,
&error);
g_assert_no_error (error);
g_assert (thread != NULL);
@@ -398,7 +397,6 @@ test_method_calls_on_proxy (GDBusProxy *proxy)
thread1 = g_thread_new ("sleep",
test_sleep_in_thread_func,
&data1,
- TRUE,
&error);
g_assert_no_error (error);
g_assert (thread1 != NULL);
@@ -411,7 +409,6 @@ test_method_calls_on_proxy (GDBusProxy *proxy)
thread2 = g_thread_new ("sleep2",
test_sleep_in_thread_func,
&data2,
- TRUE,
&error);
g_assert_no_error (error);
g_assert (thread2 != NULL);
@@ -424,7 +421,6 @@ test_method_calls_on_proxy (GDBusProxy *proxy)
thread3 = g_thread_new ("sleep3",
test_sleep_in_thread_func,
&data3,
- TRUE,
&error);
g_assert_no_error (error);
g_assert (thread3 != NULL);