Lines Matching defs:thread
32 #include <thread>
110 {"MTCrash", "trigger a multi-thread crash", &DfxCrasher::MultiThreadCrash},
141 {"AsyncStack", "Test async stacktrace in nomal thread crash case",
190 std::thread t1([&mutex] {
426 std::thread ([] {
429 std::thread ([] {
492 std::cout << " if you want the command execute in a sub thread" << std::endl;
493 std::cout << " add thread Prefix, e.g crasher thread-SIGFPE" << std::endl;
506 std::thread t([] {
582 pthread_t thread;
583 pthread_create(&thread, NULL, CrashInSubThread, (void*)&stackId);
585 pthread_join(thread, &result);
739 if (!strncmp(arg, "thread-", strlen("thread-"))) {
740 return DoActionOnSubThread(arg + strlen("thread-"));