Lines Matching refs:threadCfg
257 struct OsalThreadParam threadCfg;
270 HDF_STATUS ret = memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
275 threadCfg.name = "usb io send process";
276 threadCfg.priority = OSAL_THREAD_PRI_DEFAULT;
277 threadCfg.stackSize = USB_IO_SEND_PROCESS_STACK_SIZE;
285 ret = OsalThreadStart(&interfacePool->ioSendProcess, &threadCfg);
292 (void)memset_s(&threadCfg, sizeof(threadCfg), 0, sizeof(threadCfg));
293 threadCfg.name = "usb io async receive process";
294 threadCfg.priority = OSAL_THREAD_PRI_DEFAULT;
295 threadCfg.stackSize = USB_IO_RECEIVE_PROCESS_STACK_SIZE;
303 ret = OsalThreadStart(&interfacePool->ioAsyncReceiveProcess, &threadCfg);