woj-sandbox/err.h

18 lines
437 B
C
Raw Normal View History

2022-10-02 14:09:25 +08:00
#ifndef WOJ_SANDBOX_ERR_H
#define WOJ_SANDBOX_ERR_H
// Error Code
#define ERR_SECCOMP_ENV 10
#define ERR_SECCOMP_INIT 11
#define ERR_SECCOMP_RESOLVE 12
#define ERR_SECCOMP_LOAD 13
#define ERR_UNSETENV 14
#define ERR_NO_RULE_FOUND 15
2022-10-09 00:06:07 +08:00
#define ERR_RLIMIT_SET 16
#define ERR_FORK 17
#define ERR_WAIT 18
#define ERR_EXEC 19
#define ERR_ARGUMENTS 20
2022-10-02 14:09:25 +08:00
#endif // WOJ_SANDBOX_ERR_H