forked from apple/swift-cassandra-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsan_suppressions.txt
23 lines (22 loc) · 916 Bytes
/
tsan_suppressions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
##===----------------------------------------------------------------------===##
##
## This source file is part of the Swift Cassandra Client open source project
##
## Copyright (c) 2022 Apple Inc. and the Swift Cassandra Client project authors
## Licensed under Apache License v2.0
##
## See LICENSE.txt for license information
## See CONTRIBUTORS.txt for the list of Swift Cassandra Client project authors
##
## SPDX-License-Identifier: Apache-2.0
##
##===----------------------------------------------------------------------===##
# C++ Cassandra driver uses classic thread-safe implementation of SharedPtr based on atomics.
# The implementation is correct but TSAN has false positive data races during SharedPtr
# destruction.
race:datastax::internal::RefCounted<datastax::internal::*>::dec_ref
race:datastax::internal::Allocator<*>
# Races in libuv.so
race:uv__io_feed
race:uv__update_time
race:uv_timer_start