//===-- options.h -----------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef SCUDO_OPTIONS_H_ #define SCUDO_OPTIONS_H_ #include "atomic_helpers.h" #include "common.h" #include "memtag.h" namespace scudo { enum class OptionBit { … }; struct Options { … }; template <typename Config> bool useMemoryTagging(const Options &Options) { … } struct AtomicOptions { … }; } // namespace scudo #endif // SCUDO_OPTIONS_H_