OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thread_attributes
(Results
1 - 3
of
3
) sorted by null
/external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper_unittest_helper.cc
86
pthread_attr_t
thread_attributes
;
local
87
pthread_attr_init(&
thread_attributes
);
88
pthread_attr_setdetachstate(&
thread_attributes
, PTHREAD_CREATE_DETACHED);
90
pthread_create(&threads[i], &
thread_attributes
, &thread_function, &pipefd);
/bionic/libc/bionic/
posix_timers.cpp
143
pthread_attr_t
thread_attributes
;
local
145
pthread_attr_init(&
thread_attributes
);
147
thread_attributes
= *reinterpret_cast<pthread_attr_t*>(evp->sigev_notify_attributes);
149
pthread_attr_setdetachstate(&
thread_attributes
, PTHREAD_CREATE_DETACHED);
158
int rc = pthread_create(&timer->callback_thread, &
thread_attributes
, __timer_thread_start, timer);
/external/google-breakpad/src/common/linux/tests/
crash_generator.cc
287
pthread_attr_t
thread_attributes
;
local
288
if (pthread_attr_init(&
thread_attributes
) != 0 ||
289
pthread_attr_setdetachstate(&
thread_attributes
,
304
if (pthread_create(&thread_data[i].thread, &
thread_attributes
,
318
pthread_attr_destroy(&
thread_attributes
);
Completed in 1424 milliseconds