1 //===-- flags.h -------------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 #define SCUDO_FLAGS_H_
12 #include "internal_defs.h"
17 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name;
22 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
24 #include "gwp_asan/options.inc"
25 #undef GWP_ASAN_OPTION
26 #endif // GWP_ASAN_HOOKS
34 void registerFlags(FlagParser
*Parser
, Flags
*F
);
38 #endif // SCUDO_FLAGS_H_