Searched refs:taskInitParam (Results 1 - 4 of 4) sorted by relevance
/device/qemu/SmartL_E802/liteos_m/board/fs/ |
H A D | fs_init.c | 66 TSK_INIT_PARAM_S taskInitParam; in FileSystemInit() local 68 ret = memset_s(&taskInitParam, sizeof(TSK_INIT_PARAM_S), 0, sizeof(TSK_INIT_PARAM_S)); in FileSystemInit() 73 taskInitParam.usTaskPrio = FS_INIT_TASK_PRIORITY; in FileSystemInit() 74 taskInitParam.pcName = "FileSystemTask"; in FileSystemInit() 75 taskInitParam.pfnTaskEntry = (TSK_ENTRY_FUNC)FileSystemEntry; in FileSystemInit() 76 taskInitParam.uwStackSize = FS_INIT_TASK_SIZE; in FileSystemInit() 77 ret = LOS_TaskCreate(&g_taskId, &taskInitParam); in FileSystemInit()
|
/device/qemu/esp32/liteos_m/board/fs/ |
H A D | fs_init.c | 66 TSK_INIT_PARAM_S taskInitParam; in FileSystemInit() local 68 ret = memset_s(&taskInitParam, sizeof(TSK_INIT_PARAM_S), 0, sizeof(TSK_INIT_PARAM_S)); in FileSystemInit() 73 taskInitParam.usTaskPrio = FS_INIT_TASK_PRIORITY; in FileSystemInit() 74 taskInitParam.pcName = "FileSystemTask"; in FileSystemInit() 75 taskInitParam.pfnTaskEntry = (TSK_ENTRY_FUNC)FileSystemEntry; in FileSystemInit() 76 taskInitParam.uwStackSize = FS_INIT_TASK_SIZE; in FileSystemInit() 77 ret = LOS_TaskCreate(&g_taskId, &taskInitParam); in FileSystemInit()
|
/device/soc/hisilicon/hi3861v100/hi3861_adapter/kal/posix/src/ |
H A D | pthread.c | 123 TSK_INIT_PARAM_S taskInitParam = {0}; in pthread_create() local 138 taskInitParam.usTaskPrio = LOSCFG_BASE_CORE_TSK_DEFAULT_PRIO; in pthread_create() 139 taskInitParam.uwStackSize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE; in pthread_create() 149 taskInitParam.uwStackSize = attr->stacksize; in pthread_create() 151 taskInitParam.usTaskPrio = (UINT16)attr->schedparam.sched_priority; in pthread_create() 154 taskInitParam.pcName = pthreadData->name; in pthread_create() 155 taskInitParam.pfnTaskEntry = PthreadEntry; in pthread_create() 156 taskInitParam.auwArgs[0] = (UINT32)(UINTPTR)startRoutine; in pthread_create() 157 taskInitParam.auwArgs[1] = (UINT32)(UINTPTR)arg; in pthread_create() 159 if (LOS_TaskCreateOnly(&taskID, &taskInitParam) ! in pthread_create() 287 TSK_INIT_PARAM_S taskInitParam = {0}; CleanupTaskResource() local [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/include/ |
H A D | los_task.h | 491 * @param taskInitParam [IN] Type #TSK_INIT_PARAM_S * Parameter for task creation. 508 extern UINT32 LOS_TaskCreateOnly(UINT32 *taskID, TSK_INIT_PARAM_S *taskInitParam); 538 * @param taskInitParam [IN] Type #TSK_INIT_PARAM_S * Parameter for task creation. 555 extern UINT32 LOS_TaskCreate(UINT32 *taskID, TSK_INIT_PARAM_S *taskInitParam);
|
Completed in 4 milliseconds