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_org/base/threading/
platform_thread_posix.cc
44
joinable
(false),
51
bool
joinable
;
member in struct:base::__anon7172::ThreadParams
62
if (!thread_params->
joinable
)
90
bool CreateThread(size_t stack_size, bool
joinable
,
100
// Pthreads are
joinable
by default, so only specify the detached
101
// attribute if the thread should be non-
joinable
.
102
if (!
joinable
) {
115
params.
joinable
=
joinable
;
206
return CreateThread(stack_size, true /*
joinable
thread */
[
all
...]
platform_thread_win.cc
48
bool
joinable
;
member in struct:base::__anon7173::ThreadParams
54
if (!thread_params->
joinable
)
90
// |out_thread_handle| may be NULL, in which case a non-
joinable
thread is
104
params->
joinable
= out_thread_handle != NULL;
Completed in 46 milliseconds