Lines Matching refs:threadCfg
117 struct OsalThreadParam threadCfg;
123 (void)memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
124 threadCfg.name = "usb io thread";
125 threadCfg.priority = OSAL_THREAD_PRI_DEFAULT;
126 threadCfg.stackSize = USB_IO_THREAD_STACK_SIZE;
134 ret = OsalThreadStart(&acm->ioThread, &threadCfg);
140 (void)memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
141 threadCfg.name = "usb io send thread";
142 threadCfg.priority = OSAL_THREAD_PRI_DEFAULT;
143 threadCfg.stackSize = USB_IO_THREAD_STACK_SIZE;
150 ret = OsalThreadStart(&acm->ioSendThread, &threadCfg);