From cdc2769162c7e4d4bbab0b221829c0caca31c43d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 3 May 2010 13:28:15 +0200 Subject: thread: name all threads so that the names appear in /proc/$PID/task/$TID/comm --- src/tests/asyncmsgq-test.c | 2 +- src/tests/asyncq-test.c | 4 ++-- src/tests/flist-test.c | 2 +- src/tests/lock-autospawn-test.c | 8 ++++---- src/tests/thread-test.c | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/tests') diff --git a/src/tests/asyncmsgq-test.c b/src/tests/asyncmsgq-test.c index 40c74f76..94bfcea1 100644 --- a/src/tests/asyncmsgq-test.c +++ b/src/tests/asyncmsgq-test.c @@ -80,7 +80,7 @@ int main(int argc, char *argv[]) { pa_assert_se(q = pa_asyncmsgq_new(0)); - pa_assert_se(t = pa_thread_new(the_thread, q)); + pa_assert_se(t = pa_thread_new("test", the_thread, q)); printf("Operation A post\n"); pa_asyncmsgq_post(q, NULL, OPERATION_A, NULL, 0, NULL, NULL); diff --git a/src/tests/asyncq-test.c b/src/tests/asyncq-test.c index a617e1a0..538bbb17 100644 --- a/src/tests/asyncq-test.c +++ b/src/tests/asyncq-test.c @@ -73,8 +73,8 @@ int main(int argc, char *argv[]) { pa_assert_se(q = pa_asyncq_new(0)); - pa_assert_se(t1 = pa_thread_new(producer, q)); - pa_assert_se(t2 = pa_thread_new(consumer, q)); + pa_assert_se(t1 = pa_thread_new("producer", producer, q)); + pa_assert_se(t2 = pa_thread_new("consumer", consumer, q)); pa_thread_free(t1); pa_thread_free(t2); diff --git a/src/tests/flist-test.c b/src/tests/flist-test.c index 64c0add2..69152041 100644 --- a/src/tests/flist-test.c +++ b/src/tests/flist-test.c @@ -87,7 +87,7 @@ int main(int argc, char* argv[]) { flist = pa_flist_new(0); for (i = 0; i < THREADS_MAX; i++) { - threads[i] = pa_thread_new(thread_func, pa_sprintf_malloc("Thread #%i", i+1)); + threads[i] = pa_thread_new("test", thread_func, pa_sprintf_malloc("Thread #%i", i+1)); assert(threads[i]); } diff --git a/src/tests/lock-autospawn-test.c b/src/tests/lock-autospawn-test.c index 6f7156d7..9ba61296 100644 --- a/src/tests/lock-autospawn-test.c +++ b/src/tests/lock-autospawn-test.c @@ -88,10 +88,10 @@ static void thread_func2(void *k) { int main(int argc, char**argv) { pa_thread *a, *b, *c, *d; - pa_assert_se((a = pa_thread_new(thread_func, PA_INT_TO_PTR(1)))); - pa_assert_se((b = pa_thread_new(thread_func2, PA_INT_TO_PTR(2)))); - pa_assert_se((c = pa_thread_new(thread_func2, PA_INT_TO_PTR(3)))); - pa_assert_se((d = pa_thread_new(thread_func, PA_INT_TO_PTR(4)))); + pa_assert_se((a = pa_thread_new("test1", thread_func, PA_INT_TO_PTR(1)))); + pa_assert_se((b = pa_thread_new("test2", thread_func2, PA_INT_TO_PTR(2)))); + pa_assert_se((c = pa_thread_new("test3", thread_func2, PA_INT_TO_PTR(3)))); + pa_assert_se((d = pa_thread_new("test4", thread_func, PA_INT_TO_PTR(4)))); pa_thread_join(a); pa_thread_join(b); diff --git a/src/tests/thread-test.c b/src/tests/thread-test.c index 2c07b1cc..4943a176 100644 --- a/src/tests/thread-test.c +++ b/src/tests/thread-test.c @@ -102,7 +102,7 @@ int main(int argc, char *argv[]) { tls = pa_tls_new(pa_xfree); for (i = 0; i < THREADS_MAX; i++) { - t[i] = pa_thread_new(thread_func, pa_sprintf_malloc("Thread #%i", i+1)); + t[i] = pa_thread_new("test", thread_func, pa_sprintf_malloc("Thread #%i", i+1)); assert(t[i]); } -- cgit