1 //===-- tsan_ignoreset.h ----------------------------------------*- C++ -*-===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // This file is a part of ThreadSanitizer (TSan), a race detector.
10 // IgnoreSet holds a set of stack traces where ignores were enabled.
11 //===----------------------------------------------------------------------===//
12 #ifndef TSAN_IGNORESET_H
13 #define TSAN_IGNORESET_H
15 #include "tsan_defs.h"
21 static const uptr kMaxSize
= 16;
24 void Add(u32 stack_id
);
31 u32 stacks_
[kMaxSize
];
36 #endif // TSAN_IGNORESET_H