Path: blob/main/contrib/llvm-project/compiler-rt/lib/rtsan/rtsan_suppressions.h
213766 views
//===--- rtsan_suppressions.h - Realtime Sanitizer --------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file is a part of the RTSan runtime, providing support for suppressions9//10//===----------------------------------------------------------------------===//1112#pragma once1314#include "sanitizer_common/sanitizer_stacktrace.h"1516namespace __rtsan {1718void InitializeSuppressions();19bool IsStackTraceSuppressed(const __sanitizer::StackTrace &stack);20bool IsFunctionSuppressed(const char *function_name);2122} // namespace __rtsan232425