mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-26 20:10:24 +00:00
update TSAN supressions file
to catch false positives in newer version of scoped_threadpool this change is required to prevent this snippet triggering a TSAN error (data race) in debug & release mode ``` rust // scoped_threadpool = "0.1.9" use scoped_threadpool::Pool; fn main() { Pool::new(2).scoped(move |scope| { scope.execute(move || {}); scope.execute(move || {}); }); } ```
This commit is contained in:
parent
f3af76d607
commit
c49cd3b8bb
@ -4,4 +4,7 @@ race:*drop_slow*
|
||||
race:__call_tls_dtors
|
||||
|
||||
# false positives in scoped_threadpool (?)
|
||||
race:*drop*
|
||||
race:call_once*scoped_threadpool
|
||||
race:drop*scoped_threadpool
|
||||
race:scoped_threadpool*cgu
|
||||
race:scoped_threadpool::
|
||||
|
Loading…
x
Reference in New Issue
Block a user