#ifndef __ERR_NUM_H__ #define __ERR_NUM_H__ #define OSP_OK (0) /* 正常返回 */ #define OSP_PAR_ILL (1) /* 入参错误 */ #define OSP_PAR_REP (2) /* 入参重复 */ #define OSP_QUE_FULL (3) /* 软队列满 */ #define OSP_QUE_EMPT (4) /* 软队列空 */ #define OSP_MEM_FULL (5) /* 内存申请失败 */ #define OSP_TASK_INIT_ERR (12) /* 任务初始化函数返回失败 */ #endif