Lines Matching +full:configuration +full:- +full:space
2 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
3 * Copyright (c) 2020-2022 Huawei Device Co., Ltd. All rights reserved.
33 * @defgroup los_config System configuration items
64 /****************************** System clock module configuration ****************************/
131 * External configuration item for timer tailoring
136 /****************************** Hardware interrupt module configuration ***************************…
139 * Configuration item for hardware interrupt tailoring
165 /****************************** Task module configuration ********************************/
235 * Configuration item for task (stack) monitoring module tailoring
241 /****************************** Semaphore module configuration ******************************/
244 * Configuration item for semaphore module tailoring
266 /****************************** Mutex module configuration ******************************/
269 * Configuration item for mutex module tailoring
275 /****************************** rwlock module configuration ******************************/
278 * Configuration item for rwlock module tailoring
284 /****************************** Queue module configuration ********************************/
287 * Configuration item for queue module tailoring
300 /****************************** Software timer module configuration **************************/
305 * Configuration item for software timer module tailoring
343 /****************************** Memory module configuration **************************/
358 ((OS_SYS_FUNC_ADDR_END) - (((UINTPTR)&__bss_end + (64 - 1)) & ~(64 - 1)))
361 /****************************** SMP module configuration **************************/
368 #define LOSCFG_KERNEL_CPU_MASK ((1 << LOSCFG_KERNEL_CORE_NUM) - 1)
400 /****************************** Exception information configuration ******************************/
404 * the size of space for recording exception information
410 * the address of space for recording exception information
430 …* <li> "startAddr" must be left to save the exception address space, the size of "buf" is "space" …
433 * @param startAddr [IN] Address of storage ,its must be left to save the exception address space
434 * @param space [IN] size of storage.its is also the size of "buf"
435 …* @param rwFlag [IN] writer-read flag, 0 for writing,1 for reading, other number is to do no…
443 typedef VOID (*log_read_write_fn)(UINT32 startAddr, UINT32 space, UINT32 rwFlag, CHAR *buf);
452 * and specify location and space and size</li>
456 * <li> "startAddr" must be left to save the exception address space, the size of "buf" is "space",
457 * the space of "buf" is malloc or free in user's code </li>
460 * @param startAddr [IN] Address of storage, it must be left to save the exception address space
461 * @param space [IN] size of storage space, it is also the size of "buf"
462 …* @param buf [IN] the buffer of storing exception information, the space of "buf" is mall…
471 VOID LOS_ExcInfoRegHook(UINT32 startAddr, UINT32 space, CHAR *buf, log_read_write_fn hook);