/* ---------------------------------------------------------------------------- * Copyright (c) Huawei Technologies Co., Ltd. 2013-2019. All rights reserved. * Description: Error Handling * Author: Huawei LiteOS Team * Create: 2013-01-01 * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * 3. Neither the name of the copyright holder nor the names of its contributors may be used * to endorse or promote products derived from this software without specific prior written * permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * --------------------------------------------------------------------------- */ /** * @defgroup los_err Error handling * @ingroup kernel */ #ifndef _LOS_ERR_H #define _LOS_ERR_H #include "los_typedef.h" #ifdef __cplusplus #if __cplusplus extern "C" { #endif /* __cplusplus */ #endif /* __cplusplus */ /** * @ingroup los_err * @brief Define the pointer to the error handling function. * * @par Description: * This API is used to define the pointer to the error handling function. * @attention * None. * * @param fileName [IN] Log file that stores error information. * @param lineNo [IN] Line number of the erroneous line. * @param errorNo [IN] Error code. * @param paraLen [IN] Length of the input parameter pPara. * @param para [IN] User label of the error. * * @retval None. * @par Dependency: * * @since Huawei LiteOS V100R001C00 */ //LOS_ERRORHANDLE_FUNC 是一个函数指针类型,它指向一个函数,该函数具有以下特征: typedef VOID (*LOS_ERRORHANDLE_FUNC)(CHAR *fileName,//表示发生错误的文件名。 UINT32 lineNo,//表示发生错误的行号。 UINT32 errorNo,//表示错误代码或错误号。 UINT32 paraLen,//表示附加参数的长度。 VOID *para);//表示附加参数的指针。 /** * @ingroup los_err * @brief Error handling function. * * @par Description: * This API is used to perform different operations according to error types. * @attention * None * * @param fileName [IN] Log file that stores error information. * @param lineNo [IN] Line number of the erroneous line which should not be OS_ERR_MAGIC_WORD. * @param errorNo [IN] Error code. * @param paraLen [IN] Length of the input parameter pPara. * @param para [IN] User label of the error. * * @retval #LOS_OK The error is successfully processed. * @par Dependency: * * @since Huawei LiteOS V100R001C00 */ /*函数的作用是处理错误。当程序运行过程中发生错误时, 可以调用这个函数来进行错误处理,包括记录错误信息、输出错误日志等操作。 传入的参数可以用于定位和描述错误的具体信息, 从而更好地进行错误分析和排查。 CHAR *fileName:表示发生错误的文件名。 UINT32 lineNo:表示发生错误的行号。 UINT32 errorNo:表示错误码或错误类型。 UINT32 paraLen:表示传递的参数长度。 VOID *para:表示传递的参数。*/ extern UINT32 LOS_ErrHandle(CHAR *fileName, UINT32 lineNo, UINT32 errorNo, UINT32 paraLen, VOID *para); /** * @ingroup los_err * @brief User registration error handling hook function. * * @par Description: * This API is used to register user error handling hook function, * Support repeated registration. * @attention * None * * @param func [IN] error handling hook function. * * @retval None. * @par Dependency: * * @since Huawei LiteOS V100R001C00 */ extern VOID LOS_RegErrHandle(LOS_ERRORHANDLE_FUNC func); #ifdef __cplusplus #if __cplusplus } #endif /* __cplusplus */ #endif /* __cplusplus */ #endif /* _LOS_ERR_H */