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

  /external/chromium/base/
platform_thread_posix.cc 76 bool CreateThread(size_t stack_size, bool joinable,
87 // Pthreads are joinable by default, so only specify the detached attribute if
88 // the thread should be non-joinable.
89 if (!joinable) {
107 return CreateThread(stack_size, true /* joinable thread */,
115 bool result = CreateThread(stack_size, false /* non-joinable thread */,
  /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,

Completed in 835 milliseconds