Home
last modified time | relevance | path

Searched refs:LOSCFG_SYS_HEAP_SIZE (Results 1 – 5 of 5) sorted by relevance

/kernel/liteos_m/kernel/include/
Dlos_config.h457 #ifndef LOSCFG_SYS_HEAP_SIZE
458 #define LOSCFG_SYS_HEAP_SIZE 0x10000UL macro
/kernel/liteos_m/testsuites/sample/kernel/task/
DIt_los_task_007.c46 task1.uwStackSize = LOSCFG_SYS_HEAP_SIZE + 1; in TestCase()
DIt_los_task_006.c49 task1.uwStackSize = LOSCFG_SYS_HEAP_SIZE; in TestCase()
/kernel/liteos_m/kernel/src/mm/
Dlos_memory.c53 STATIC UINT8 g_memStart[LOSCFG_SYS_HEAP_SIZE];
2223 ret = LOS_MemInit(m_aucSysMem0, LOSCFG_SYS_HEAP_SIZE);
2224 …teOS heap memory address:%p, size:0x%lx\n", m_aucSysMem0, (unsigned long int)LOSCFG_SYS_HEAP_SIZE);
/kernel/liteos_m/kernel/src/
Dlos_task.c689 if (taskInitParam->uwStackSize > LOSCFG_SYS_HEAP_SIZE) { in OsTaskInitParamCheck()