Lines Matching refs:task2
159 dprintf("task2 try to get mutex, wait forever.\n");
163 dprintf("task2 get mutex g_testMux and suspend 100 ticks.\n");
168 dprintf("task2 resumed and post the g_testMux\n");
178 TSK_INIT_PARAM_S task2;
199 memset(&task2, 0, sizeof(TSK_INIT_PARAM_S));
200 task2.pfnTaskEntry = (TSK_ENTRY_FUNC)Example_MutexTask2;
201 task2.pcName = "MutexTsk2";
202 task2.uwStackSize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE;
203 task2.usTaskPrio = 4;
204 ret = LOS_TaskCreate(&g_testTaskId02, &task2);
206 dprintf("task2 create failed.\n");
223 task2 try to get mutex, wait forever.
224 task2 get mutex g_testMux and suspend 100 ticks.
227 task2 resumed and post the g_testMux