mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
17 lines
260 B
C
17 lines
260 B
C
|
#ifndef __CR_SECCOMP_H__
|
||
|
#define __CR_SECCOMP_H__
|
||
|
|
||
|
#ifndef SECCOMP_MODE_DISABLED
|
||
|
#define SECCOMP_MODE_DISABLED 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef SECCOMP_MODE_STRICT
|
||
|
#define SECCOMP_MODE_STRICT 1
|
||
|
#endif
|
||
|
|
||
|
#ifndef SECCOMP_MODE_FILTER
|
||
|
#define SECCOMP_MODE_FILTER 2
|
||
|
#endif
|
||
|
|
||
|
#endif
|