[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit
Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/app/include/zxic_errno.h b/ap/app/include/zxic_errno.h
new file mode 100755
index 0000000..002dc1a
--- /dev/null
+++ b/ap/app/include/zxic_errno.h
@@ -0,0 +1,33 @@
+/*********************************************************************************
+ * @file zxic_errno.h
+ * @brief ¶¨ÒåÆ½Ì¨µÄ´íÎóÂë
+ *
+ * Copyright (C) 2017 Sanechips Technology Co., Ltd.
+ * @author
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+***********************************************************************************/
+#ifndef _ZXIC_ERRNO_H_
+#define _ZXIC_ERRNO_H_
+
+#include "max_macro.h"
+
+
+
+#ifndef NULL
+#define NULL ((void*)0)
+#endif
+
+
+typedef struct {
+ int err_no;
+ unsigned long err_time; //´íÎó·¢Éúʱ¼ä
+} ERR_INFO;
+
+typedef struct {
+ unsigned int num; //¼Ç¼errno×ܸöÊý
+ ERR_INFO errInfo[ERR_TRACK_MAX_NUM]; //Ñ»·¸²¸Çϱê num % ERR_TRACK_MAX_NUM
+} ERR_TRACK;
+#endif