Searched refs:thread_join (Results 1 - 14 of 14) sorted by relevance

/fuchsia/zircon/kernel/tests/
H A Dfibo.cpp40 thread_join(t[0], NULL, ZX_TIME_INFINITE);
49 thread_join(t[0], &retcode0, ZX_TIME_INFINITE);
50 thread_join(t[1], &retcode1, ZX_TIME_INFINITE);
68 thread_join(t, &retcode, ZX_TIME_INFINITE);
H A Dthread_tests.cpp101 thread_join(threads[i], NULL, ZX_TIME_INFINITE);
169 thread_join(t, NULL, ZX_TIME_INFINITE);
242 thread_join(threads[i], NULL, ZX_TIME_INFINITE);
264 thread_join(threads[i], NULL, ZX_TIME_INFINITE);
385 thread_join(threads[i], NULL, ZX_TIME_INFINITE);
457 printf("\ttesting thread_join/thread_detach\n");
459 printf("\tcreating and waiting on thread to exit with thread_join\n");
464 err = thread_join(t, &ret, ZX_TIME_INFINITE);
468 printf("\tcreating and waiting on thread to exit with thread_join, after thread has exited\n");
474 err = thread_join(
[all...]
H A Dsync_ipi_tests.cpp75 thread_join(threads[i], NULL, ZX_TIME_INFINITE);
H A Dtimer_tests.cpp70 if (thread_join(timer_threads[i], NULL, ZX_SEC(1)) == 0) {
293 thread_join(thread, nullptr, ZX_TIME_INFINITE);
/fuchsia/zircon/system/uapp/thread-stress/
H A Dthread-stress.c25 static void thread_join(thrd_t thread) { function
42 thread_join(thread[i]);
/fuchsia/zircon/kernel/kernel/
H A Ddpc.cpp90 zx_status_t status = thread_join(t, &ret, ZX_TIME_INFINITE);
H A Dthread.cpp392 zx_status_t thread_join(thread_t* t, int* retcode, zx_time_t deadline) { function
440 // if another thread is blocked inside thread_join() on this thread,
446 t->flags &= ~THREAD_FLAG_DETACHED; // makes sure thread_join continues
448 return thread_join(t, NULL, 0);
/fuchsia/zircon/kernel/lib/oom/
H A Doom.cpp181 zx_status_t s = thread_join(t, nullptr, deadline);
/fuchsia/zircon/kernel/syscalls/
H A Dsystem_x86.cpp183 zx_status_t status = thread_join(t, &retcode, ZX_TIME_INFINITE);
/fuchsia/zircon/kernel/lib/debuglog/
H A Ddebuglog.cpp418 zx_status_t status = thread_join(notifier_thread, nullptr, deadline);
428 zx_status_t status = thread_join(dumper_thread, nullptr, deadline);
/fuchsia/zircon/kernel/include/kernel/
H A Dthread.h253 zx_status_t thread_join(thread_t* t, int* retcode, zx_time_t deadline);
/fuchsia/zircon/kernel/lib/unittest/
H A Dunittest.cpp214 zx_status_t status = thread_join(t, &success, ZX_TIME_INFINITE);
/fuchsia/zircon/kernel/lib/debugcommands/
H A Ddebugcommands.cpp316 thread_join(t, NULL, ZX_TIME_INFINITE);
/fuchsia/zircon/kernel/object/
H A Dthread_dispatcher.cpp78 __UNUSED auto ret = thread_join(&thread_, nullptr, ZX_TIME_INFINITE);
80 DEBUG_ASSERT_MSG(ret == ZX_OK, "thread_join returned something other than ZX_OK\n");

Completed in 55 milliseconds