Home
last modified time | relevance | path

Searched refs:thread_attributes (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/client/linux/minidump_writer/
Dlinux_dumper_unittest_helper.cc86 pthread_attr_t thread_attributes; in main() local
87 pthread_attr_init(&thread_attributes); in main()
88 pthread_attr_setdetachstate(&thread_attributes, PTHREAD_CREATE_DETACHED); in main()
90 pthread_create(&threads[i], &thread_attributes, &thread_function, &pipefd); in main()
/external/google-breakpad/src/common/linux/tests/
Dcrash_generator.cc287 pthread_attr_t thread_attributes; in CreateThreadsInChildProcess() local
288 if (pthread_attr_init(&thread_attributes) != 0 || in CreateThreadsInChildProcess()
289 pthread_attr_setdetachstate(&thread_attributes, in CreateThreadsInChildProcess()
304 if (pthread_create(&thread_data[i].thread, &thread_attributes, in CreateThreadsInChildProcess()
318 pthread_attr_destroy(&thread_attributes); in CreateThreadsInChildProcess()
/external/python/cpython2/PC/
D_subprocess.c423 PyObject* thread_attributes; /* ignored */ in sp_CreateProcess() local
434 &thread_attributes, in sp_CreateProcess()