Add suppresions for DRD and Helgrind, guard variables on FreeBSD 14.0

This is a change probably related to clang 13.

guard variables make the initialization of function static variables
thread safe (only the initialization, not other accesses).
This commit is contained in:
Paul Floyd 2022-05-31 22:18:13 +02:00
parent 0c0acce7fa
commit c821499df3
2 changed files with 10 additions and 0 deletions

View File

@ -185,3 +185,8 @@
drd:ConflictingAccess
fun:_ZNSt3__119__thread_local_dataEv
}
{
DRD-FREEBSD140-GUARD-VARIABLE
drd:ConflictingAccess
fun:_ZL11get_counterv
}

View File

@ -184,3 +184,8 @@
obj:/lib/libgcc_s.so.1
fun:_Unwind_ForcedUnwind
}
{
HELGRIND-GUARD-VARIABLE
Helgrind:Race
fun:_ZL11*
}