diff --git a/include/rtdef.h b/include/rtdef.h index eabbf009ad..5954cf258b 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -419,6 +419,7 @@ typedef int (*init_fn_t)(void); #define RT_ENOENT ENOENT /**< No entry */ #define RT_ENOSPC ENOSPC /**< No space left */ #define RT_EPERM EPERM /**< Operation not permitted */ +#define RT_ETRAP 254 /**< Trap event */ #else #define RT_EOK 0 /**< There is no error */ #define RT_ERROR 1 /**< A generic/unknown error happens */ @@ -434,6 +435,7 @@ typedef int (*init_fn_t)(void); #define RT_ENOENT 11 /**< No entry */ #define RT_ENOSPC 12 /**< No space left */ #define RT_EPERM 13 /**< Operation not permitted */ +#define RT_ETRAP 14 /**< Trap event */ #endif /* defined(RT_USING_LIBC) && !RT_USING_LIBC_ISO_ONLY */ /**@}*/ diff --git a/src/kservice.c b/src/kservice.c index 411e481832..5b005a9551 100644 --- a/src/kservice.c +++ b/src/kservice.c @@ -118,6 +118,7 @@ static struct _errno_str_t rt_errno_strs[] = {RT_ENOENT , "ENOENT "}, {RT_ENOSPC , "ENOSPC "}, {RT_EPERM , "EPERM "}, + {RT_ETRAP , "ETRAP "}, }; /**