diff options
| author | Andrey Konovalov <andreyknvl@google.com> | 2017-12-13 19:57:59 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-12-14 08:54:55 +0100 |
| commit | ea8dc17ee971e915df1dc8fdd4683c2aafc7b53f (patch) | |
| tree | 128d3d577ddc8b6227574ad8717a7e78d832e94b /executor/common.h | |
| parent | 06ea774dca81c53408f248915da116d5468d6af8 (diff) | |
executor: fix macros in common.h
Diffstat (limited to 'executor/common.h')
| -rw-r--r-- | executor/common.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/executor/common.h b/executor/common.h index 662ddea84..78b752045 100644 --- a/executor/common.h +++ b/executor/common.h @@ -55,9 +55,10 @@ extern call_t syscalls[]; extern unsigned syscall_count; #endif -#if defined(SYZ_EXECUTOR) || (defined(SYZ_REPEAT) && defined(SYZ_WAIT_REPEAT)) || \ - defined(SYZ_USE_TMP_DIR) || defined(SYZ_TUN_ENABLE) || defined(SYZ_SANDBOX_NAMESPACE) || \ - defined(SYZ_SANDBOX_SETUID) || defined(SYZ_FAULT_INJECTION) || defined(__NR_syz_kvm_setup_cpu) +#if defined(SYZ_EXECUTOR) || (defined(SYZ_REPEAT) && defined(SYZ_WAIT_REPEAT)) || \ + defined(SYZ_USE_TMP_DIR) || defined(SYZ_TUN_ENABLE) || defined(SYZ_SANDBOX_NAMESPACE) || \ + defined(SYZ_SANDBOX_NONE) || defined(SYZ_SANDBOX_SETUID) || defined(SYZ_FAULT_INJECTION) || \ + defined(__NR_syz_kvm_setup_cpu) const int kFailStatus = 67; const int kRetryStatus = 69; #endif |
