OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:joinable
(Results
1 - 8
of
8
) sorted by 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
)
ChangeLog
806
* testgthread.c (new_thread): As a
joinable
thread seems to be the
/external/bluetooth/glib/glib/
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
,
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
...]
/external/bluetooth/glib/docs/reference/glib/
glib-overrides.txt
101
gboolean
joinable
,
/external/bluetooth/glib/docs/reference/glib/tmpl/
threads.sgml
303
Resources for a
joinable
thread are not fully released until
315
If @
joinable
is %TRUE, you can wait for this threads termination
332
@
joinable
: should this thread be
joinable
?
346
If @
joinable
is %TRUE, you can wait for this threads termination
388
@
joinable
: should this thread be
joinable
?
408
released. @thread must have been created with @
joinable
=%TRUE in
452
using g_thread_join() and the current thread is
joinable
, the waiting
454
g_thread_join(). If the current thread is not
joinable
, @retval i
[
all
...]
/bionic/libc/bionic/
pthread.c
661
/* thread is not
joinable
! */
[
all
...]
Completed in 142 milliseconds