2008-08-19 19:30:36 +00:00
|
|
|
/* Author: Karl MacMillan <kmacmillan@mentalrootkit.com> */
|
|
|
|
|
|
|
|
#ifndef __sepol_errno_h__
|
|
|
|
#define __sepol_errno_h__
|
|
|
|
|
|
|
|
#include <errno.h>
|
2014-12-16 19:44:41 +00:00
|
|
|
|
2016-11-29 15:57:48 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
#define SEPOL_OK 0
|
|
|
|
|
|
|
|
/* These first error codes are defined for compatibility with
|
2018-09-24 18:10:51 +00:00
|
|
|
* previous version of libsepol. In the future, custom error
|
2008-08-19 19:30:36 +00:00
|
|
|
* codes that don't map to system error codes should be defined
|
|
|
|
* outside of the range of system error codes.
|
|
|
|
*/
|
2022-07-13 13:43:43 +00:00
|
|
|
#define SEPOL_ERR (-1)
|
|
|
|
#define SEPOL_ENOTSUP (-2) /* feature not supported in module language */
|
|
|
|
#define SEPOL_EREQ (-3) /* requirements not met */
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
/* Error codes that map to system error codes */
|
2022-07-13 13:43:43 +00:00
|
|
|
#define SEPOL_ENOMEM (-ENOMEM)
|
|
|
|
#define SEPOL_EEXIST (-EEXIST)
|
|
|
|
#define SEPOL_ENOENT (-ENOENT)
|
2008-08-19 19:30:36 +00:00
|
|
|
|
2016-11-29 15:57:48 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-08-19 19:30:36 +00:00
|
|
|
#endif
|