OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:joinable
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/threading/
platform_thread_posix.cc
42
bool
joinable
;
member in struct:base::__anon3738::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::__anon3739::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;
Completed in 1400 milliseconds