| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sandbox/linux/bpf_dsl/syscall_set.h" | 5 #include "sandbox/linux/bpf_dsl/syscall_set.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "sandbox/linux/seccomp-bpf/linux_seccomp.h" | 9 #include "sandbox/linux/bpf_dsl/linux_syscall_ranges.h" |
| 10 | 10 |
| 11 namespace sandbox { | 11 namespace sandbox { |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 #if defined(__mips__) && (_MIPS_SIM == _MIPS_SIM_ABI32) | 15 #if defined(__mips__) && (_MIPS_SIM == _MIPS_SIM_ABI32) |
| 16 // This is true for Mips O32 ABI. | 16 // This is true for Mips O32 ABI. |
| 17 static_assert(MIN_SYSCALL == __NR_Linux, "min syscall number should be 4000"); | 17 static_assert(MIN_SYSCALL == __NR_Linux, "min syscall number should be 4000"); |
| 18 #else | 18 #else |
| 19 // This true for supported architectures (Intel and ARM EABI). | 19 // This true for supported architectures (Intel and ARM EABI). |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 DCHECK(lhs.set_ == rhs.set_); | 135 DCHECK(lhs.set_ == rhs.set_); |
| 136 return (lhs.done_ == rhs.done_) && (lhs.num_ == rhs.num_); | 136 return (lhs.done_ == rhs.done_) && (lhs.num_ == rhs.num_); |
| 137 } | 137 } |
| 138 | 138 |
| 139 bool operator!=(const SyscallSet::Iterator& lhs, | 139 bool operator!=(const SyscallSet::Iterator& lhs, |
| 140 const SyscallSet::Iterator& rhs) { | 140 const SyscallSet::Iterator& rhs) { |
| 141 return !(lhs == rhs); | 141 return !(lhs == rhs); |
| 142 } | 142 } |
| 143 | 143 |
| 144 } // namespace sandbox | 144 } // namespace sandbox |
| OLD | NEW |