Lines Matching refs:task2
152 dprintf("task2 try to get mutex, wait forever.\n");
156 dprintf("task2 get mutex g_testMux and suspend 100 ticks.\n");
161 dprintf("task2 resumed and post the g_testMux\n");
171 TSK_INIT_PARAM_S task2;
192 memset(&task2, 0, sizeof(TSK_INIT_PARAM_S));
193 task2.pfnTaskEntry = (TSK_ENTRY_FUNC)Example_MutexTask2;
194 task2.pcName = "MutexTsk2";
195 task2.uwStackSize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE;
196 task2.usTaskPrio = 4;
197 ret = LOS_TaskCreate(&g_testTaskId02, &task2);
199 dprintf("task2 create failed.\n");
216 task2 try to get mutex, wait forever.
217 task2 get mutex g_testMux and suspend 100 ticks.
220 task2 resumed and post the g_testMux