Searched refs:threadID (Results 1 - 5 of 5) sorted by relevance
/base/hiviewdfx/faultloggerd/test/unittest/process_dump/ |
H A D | multithread_constructor.c | 29 int threadID = *argv; in CreateThread() local 30 printf("create MultiThread %d\n", threadID); in CreateThread() 37 int threadID = *argv; in CreateThreadForCrash() local 38 printf("create ThreadForCrash %d\n", threadID); in CreateThreadForCrash() 49 int threadID[threadNum]; in MultiThreadConstructor() local 52 threadID[i] = i; in MultiThreadConstructor() 53 pthread_create(&t[i], NULL, (void *(*)(void *))CreateThread, &threadID[i]); in MultiThreadConstructor() 67 int threadID[threadNum]; in MultiThreadConstructorForThreadCrash() local 72 threadID[i] = i; in MultiThreadConstructorForThreadCrash() 73 pthread_create(&t[i], NULL, (void *(*)(void *))CreateThread, &threadID[ in MultiThreadConstructorForThreadCrash() [all...] |
H A D | process_dump_test.cpp | 53 int threadID = *(int*)argv; in SleepThread() local 54 printf("create MultiThread %d", threadID); in SleepThread() 147 int threadID[1] = {1}; in HWTEST_F() local 148 pthread_create(&tid, NULL, SleepThread, &threadID[0]); in HWTEST_F()
|
/base/hiviewdfx/faultloggerd/tools/crasher_c/ |
H A D | dfx_crasher.c | 237 int threadID[2] = {1, 2}; in MultiThreadCrash() local 238 pthread_create(&t[0], NULL, SleepThread, &threadID[0]); in MultiThreadCrash() 239 pthread_create(&t[1], NULL, SleepThread, &threadID[1]); in MultiThreadCrash() 261 int threadID = *(int*)argv; in SleepThread() local 262 printf("create MultiThread %d", threadID); in SleepThread()
|
/base/hiviewdfx/faultloggerd/tools/crasher_cpp/ |
H A D | dfx_crasher.h | 88 int SleepThread(int threadID);
|
H A D | dfx_crasher.cpp | 446 int SleepThread(int threadID) in SleepThread() argument 448 std::cout << "create MultiThread " << threadID << std::endl; in SleepThread()
|
Completed in 4 milliseconds