Lines Matching refs:task1
130 dprintf("task1 try to get mutex, wait 10 ticks.\n");
135 dprintf("task1 get mutex g_testMux.\n");
141 dprintf("task1 timeout and try to get mutex, wait forever.\n");
145 dprintf("task1 wait forever, get mutex g_testMux.\n");
150 dprintf("task1 post and delete mutex g_testMux.\n");
177 TSK_INIT_PARAM_S task1;
187 memset(&task1, 0, sizeof(TSK_INIT_PARAM_S));
188 task1.pfnTaskEntry = (TSK_ENTRY_FUNC)Example_MutexTask1;
189 task1.pcName = "MutexTsk1";
190 task1.uwStackSize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE;
191 task1.usTaskPrio = 5;
192 ret = LOS_TaskCreate(&g_testTaskId01, &task1);
194 dprintf("task1 create failed.\n");
225 task1 try to get mutex, wait 10 ticks.
226 task1 timeout and try to get mutex, wait forever.
228 task1 wait forever, get mutex g_testMux.
229 task1 post and delete mutex g_testMux.