HomeSort by relevance Sort by last modified time
    Searched refs:joinable (Results 1 - 9 of 9) sorted by null

  /external/chromium/base/threading/
platform_thread_posix.cc 42 bool joinable; member in struct:base::__anon2784::ThreadParams
48 if (!thread_params->joinable)
55 bool CreateThread(size_t stack_size, bool joinable,
66 // Pthreads are joinable by default, so only specify the detached attribute if
67 // the thread should be non-joinable.
68 if (!joinable) {
108 params->joinable = joinable;
203 return CreateThread(stack_size, true /* joinable thread */,
211 bool result = CreateThread(stack_size, false /* non-joinable thread */
    [all...]
platform_thread_win.cc 28 bool joinable; member in struct:base::__anon2785::ThreadParams
34 if (!thread_params->joinable)
42 // |out_thread_handle| may be NULL, in which case a non-joinable thread is
57 params->joinable = out_thread_handle != NULL;
  /external/bluetooth/glib/gthread/
gthread-win32.c 88 gboolean joinable; member in struct:_GThreadData
408 self->joinable = FALSE;
454 if (!self->joinable)
491 gboolean joinable,
508 retval->joinable = joinable;
539 g_return_if_fail (target->joinable);
gthread-posix.c 305 gboolean joinable,
339 joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED));
370 if (!joinable)
  /external/bluetooth/glib/glib/
gthread.c 561 /* We only free the thread structure, if it isn't joinable. If
563 if (!thread->thread.joinable)
644 gboolean joinable,
657 result->thread.joinable = joinable;
664 stack_size, joinable, bound, priority,
699 g_return_val_if_fail (thread->joinable, NULL);
722 thread->joinable = 0;
725 /* the thread structure for non-joinable threads is freed upon
727 if a joinable thread is not joined. *
    [all...]
gthread.h 68 gboolean joinable; member in struct:_GThread
101 gboolean joinable,
217 #define g_thread_create(func, data, joinable, error) \
218 (g_thread_create_full (func, data, 0, joinable, FALSE, \
224 gboolean joinable,
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 293 * Tell DRD whether 'tid' is a joinable thread or a detached thread.
295 static void DRD_(set_joinable)(const pthread_t tid, const int joinable)
297 assert(joinable == 0 || joinable == 1);
299 tid, joinable, 0, 0, 0);
443 * Find out whether the thread will be started as a joinable thread
445 * this means that the new thread will be started as a joinable thread.
    [all...]
drd_thread.h 158 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable);
211 * - The ID refers either to a thread known by the Valgrind core, a joinable
drd_thread.c 517 * joinable threads, not for detached threads.
536 * POSIX thread ID associated with the detached thread. For joinable
589 /** Returns true for joinable threads and false for detached threads. */
597 /** Store the thread mode: joinable or detached. */
598 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable)
602 tl_assert(!! joinable == joinable);
605 DRD_(g_threadinfo)[tid].detached_posix_thread = ! joinable;
    [all...]

Completed in 264 milliseconds