Searched refs:LOS_TASK_MIN_STACK_SIZE (Results 1 – 12 of 12) sorted by relevance
173 #ifndef LOS_TASK_MIN_STACK_SIZE175 #define LOS_TASK_MIN_STACK_SIZE (ALIGN(0x800, 8)) macro177 #define LOS_TASK_MIN_STACK_SIZE (ALIGN(0x800, 4)) macro
88 task.uwStackSize = LOS_TASK_MIN_STACK_SIZE; in Testcase()99 task.uwStackSize = LOS_TASK_MIN_STACK_SIZE; in Testcase()
107 task.uwStackSize = LOS_TASK_MIN_STACK_SIZE; in Testcase()118 task.uwStackSize = LOS_TASK_MIN_STACK_SIZE; in Testcase()
80 stTestTask.uwStackSize = LOS_TASK_MIN_STACK_SIZE; \97 #define LOS_TASK_MIN_STACK_SIZE 2048 macro100 #define TASK_STACK_SIZE_TEST (LOS_TASK_MIN_STACK_SIZE * 3)102 #define TASK_STACK_SIZE_TEST LOS_TASK_MIN_STACK_SIZE
50 …task1.uwStackSize = LOS_TASK_MIN_STACK_SIZE - sizeof(UINTPTR) * 2; // 2, Used to calculate stack s… in Testcase()
51 task1.uwStackSize = LOS_TASK_MIN_STACK_SIZE + 1; in Testcase()
76 pthread_attr_setstacksize(&attr, LOS_TASK_MIN_STACK_SIZE - 2 * sizeof(UINTPTR)); in Testcase()
97 attr.stacksize = LOS_TASK_MIN_STACK_SIZE - 2 * sizeof(UINTPTR); // 2, Set reasonable stack size. in Testcase()
115 #define TASK_STACK_SIZE_TEST (LOS_TASK_MIN_STACK_SIZE * 3)117 #define TASK_STACK_SIZE_TEST LOS_TASK_MIN_STACK_SIZE
88 task1.uwStackSize = LOS_TASK_MIN_STACK_SIZE; in TaskMisc10Func()
101 task1.uwStackSize = LOS_TASK_MIN_STACK_SIZE; in TaskMisc10Func()
457 if (initParam->uwStackSize < LOS_TASK_MIN_STACK_SIZE) { in OsTaskCreateParamCheck()