diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-10-13 00:43:33 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-10-13 00:43:33 -0400 |
commit | 015f4b4513279c4be40c03121473ffcea347ed84 (patch) | |
tree | 217484a9870e1e092bb409ffb5e7f02c3114d7e1 /gobject | |
parent | b0e73ca390d0f22baccc3636dd4d2e8e9cb0f58f (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 'gobject')
-rw-r--r-- | gobject/tests/dynamictests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/tests/dynamictests.c b/gobject/tests/dynamictests.c index 16fc925ec..657423525 100644 --- a/gobject/tests/dynamictests.c +++ b/gobject/tests/dynamictests.c @@ -210,7 +210,7 @@ test_multithreaded_dynamic_type_init (void) /* create threads */ for (i = 0; i < N_THREADS; i++) { - threads[i] = g_thread_new ("test", ref_unref_thread, (gpointer) DYNAMIC_OBJECT_TYPE, TRUE, NULL); + threads[i] = g_thread_new ("test", ref_unref_thread, (gpointer) DYNAMIC_OBJECT_TYPE, NULL); } /* execute threads */ |