|
WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
|

类型定义 | |
| typedef void(* | LOS_ERRORHANDLE_FUNC) (CHAR *fileName, UINT32 lineNo, UINT32 errorNo, UINT32 paraLen, void *para) |
| Define the pointer to the error handling function. | |
函数 | |
| UINT32 | LOS_ErrHandle (CHAR *fileName, UINT32 lineNo, UINT32 errorNo, UINT32 paraLen, void *para) |
| Error handling function. | |
| void | LOS_RegErrHandle (LOS_ERRORHANDLE_FUNC func) |
| User registration error handling hook function. | |
| typedef void(* LOS_ERRORHANDLE_FUNC) (CHAR *fileName, UINT32 lineNo, UINT32 errorNo, UINT32 paraLen, void *para) |
Define the pointer to the error handling function.
| fileName | [IN] Log file that stores error information. |
| lineNo | [IN] Line number of the erroneous line. |
| errorNo | [IN] Error code. |
| paraLen | [IN] Length of the input parameter pPara. |
| para | [IN] User label of the error. |
| None. |
|
extern |
Error handling function.
| fileName | [IN] Log file that stores error information. |
| lineNo | [IN] Line number of the erroneous line which should not be OS_ERR_MAGIC_WORD. |
| errorNo | [IN] Error code. |
| paraLen | [IN] Length of the input parameter pPara. |
| para | [IN] User label of the error. |
| LOS_OK | The error is successfully processed. |
|
extern |
User registration error handling hook function.
| func | [IN] error handling hook function. |
| None. |