brintos

brintos / llvm-project-archived public Read only

0
0
Text · 800 B · 9990b99 Raw
24 lines · c
1//===--- rtsan_suppressions.h - Realtime Sanitizer --------------*- C++ -*-===//2//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-exception6//7//===----------------------------------------------------------------------===//8//9// This file is a part of the RTSan runtime, providing support for suppressions10//11//===----------------------------------------------------------------------===//12 13#pragma once14 15#include "sanitizer_common/sanitizer_stacktrace.h"16 17namespace __rtsan {18 19void InitializeSuppressions();20bool IsStackTraceSuppressed(const __sanitizer::StackTrace &stack);21bool IsFunctionSuppressed(const char *function_name);22 23} // namespace __rtsan24