//===--- rtsan_flags.cpp - Realtime Sanitizer -------------------*- 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 // //===----------------------------------------------------------------------===// // // This file is a part of RealtimeSanitizer. // //===----------------------------------------------------------------------===// #include "rtsan/rtsan_flags.h" #include "sanitizer_common/sanitizer_flag_parser.h" #include "sanitizer_common/sanitizer_flags.h" usingnamespace__sanitizer; usingnamespace__rtsan; Flags __rtsan::flags_data; SANITIZER_INTERFACE_WEAK_DEF(const char *, __rtsan_default_options, void) { … } static void RegisterRtsanFlags(FlagParser *parser, Flags *f) { … } void __rtsan::InitializeFlags() { … }