• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- tsan_suppressions.h -------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file is a part of ThreadSanitizer (TSan), a race detector.
11 //
12 //===----------------------------------------------------------------------===//
13 #ifndef TSAN_SUPPRESSIONS_H
14 #define TSAN_SUPPRESSIONS_H
15 
16 #include "sanitizer_common/sanitizer_suppressions.h"
17 #include "tsan_report.h"
18 
19 namespace __tsan {
20 
21 const char kSuppressionNone[] = "none";
22 const char kSuppressionRace[] = "race";
23 const char kSuppressionMutex[] = "mutex";
24 const char kSuppressionThread[] = "thread";
25 const char kSuppressionSignal[] = "signal";
26 const char kSuppressionLib[] = "called_from_lib";
27 const char kSuppressionDeadlock[] = "deadlock";
28 
29 void InitializeSuppressions();
30 SuppressionContext *Suppressions();
31 void PrintMatchedSuppressions();
32 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
33 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
34 
35 }  // namespace __tsan
36 
37 #endif  // TSAN_SUPPRESSIONS_H
38