Lines Matching defs:thread
116 struct test_thread* thread = arg;
136 thread->thread_called = 1;
162 /* Hilariously bad test name. Run a lot of tasks in the thread pool and verify
163 * that each "finished" callback is run in its originating thread.
221 /* 512 kB is the default stack size of threads other than the main thread
246 uv_thread_t thread;
247 ASSERT_OK(uv_thread_create(&thread, thread_check_stack, NULL));
248 ASSERT_OK(uv_thread_join(&thread));
253 uv_thread_t thread;
258 ASSERT_OK(uv_thread_create_ex(&thread, &options,
260 ASSERT_OK(uv_thread_join(&thread));
263 ASSERT_OK(uv_thread_create_ex(&thread, &options,
265 ASSERT_OK(uv_thread_join(&thread));
268 ASSERT_OK(uv_thread_create_ex(&thread, &options,
270 ASSERT_OK(uv_thread_join(&thread));
273 ASSERT_OK(uv_thread_create_ex(&thread, &options,
275 ASSERT_OK(uv_thread_join(&thread));
279 ASSERT_OK(uv_thread_create_ex(&thread, &options,
281 ASSERT_OK(uv_thread_join(&thread));
284 ASSERT_OK(uv_thread_create_ex(&thread, &options,
286 ASSERT_OK(uv_thread_join(&thread));
291 ASSERT_OK(uv_thread_create_ex(&thread, &options,
293 ASSERT_OK(uv_thread_join(&thread));