-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathtsan-suppressions.txt
More file actions
26 lines (20 loc) · 758 Bytes
/
tsan-suppressions.txt
File metadata and controls
26 lines (20 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Suppress known false positives in V8/Node.js internals
# These are benign data races in V8's JIT compiler and garbage collector
# that are intentionally allowed for performance reasons
# Broad V8 suppressions - catches all V8 internals and base libraries
race:^v8::internal::
race:^v8::base::
# Specific V8 subsystems (kept for documentation)
race:^v8::internal::Scavenger
race:^v8::internal::ScavengerCollector
race:^v8::internal::baseline::BaselineBatchCompiler
race:^v8::internal::Malloced
race:^v8::base::RegionAllocator
# V8 heap management
race:heap::base::Worklist
# V8 cppgc (C++ garbage collector) heap registry
race:cppgc::internal::HeapRegistry
# libuv thread creation
race:uv_thread_create
# libuv worker threads
race:uv_thread_create_ex