Lines Matching refs:threadCfg
370 struct OsalThreadParam threadCfg;
372 (void)memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
373 threadCfg.name = "urb reap process";
374 threadCfg.priority = OSAL_THREAD_PRI_DEFAULT;
375 threadCfg.stackSize = URB_COMPLETE_PROCESS_STACK_SIZE;
383 ret = OsalThreadStart(&urbReapProcess, &threadCfg);
388 threadCfg.name = "urb send process";
389 threadCfg.priority = OSAL_THREAD_PRI_DEFAULT;
390 threadCfg.stackSize = URB_COMPLETE_PROCESS_STACK_SIZE;
398 ret = OsalThreadStart(&urbSendProcess, &threadCfg);