Lines Matching refs:threadCfg
237 struct OsalThreadParam threadCfg;
238 ret = memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
244 threadCfg.name = "speed read process";
245 threadCfg.priority = OSAL_THREAD_PRI_LOW;
246 threadCfg.stackSize = HDF_PROCESS_STACK_SIZE;
254 ret = OsalThreadStart(&g_threadRead, &threadCfg);
588 struct OsalThreadParam threadCfg;
589 int32_t ret = memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
594 threadCfg.name = "speed test process";
595 threadCfg.priority = OSAL_THREAD_PRI_LOW;
596 threadCfg.stackSize = HDF_PROCESS_STACK_SIZE;
604 ret = OsalThreadStart(&g_thread, &threadCfg);