From c0d16c0df217f3d166bcb87ff826897c6aea3f45 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 6 May 2024 19:48:23 +0200 Subject: [PATCH] dnsdist: Suppress a warning from TSAN about our signal handler We are calling `_exit()`, which is async-signal-safe according to POSIX. --- pdns/dnsdistdist/dnsdist-tsan.supp | 1 + 1 file changed, 1 insertion(+) diff --git a/pdns/dnsdistdist/dnsdist-tsan.supp b/pdns/dnsdistdist/dnsdist-tsan.supp index 8443ab5319..fe41721279 100644 --- a/pdns/dnsdistdist/dnsdist-tsan.supp +++ b/pdns/dnsdistdist/dnsdist-tsan.supp @@ -22,3 +22,4 @@ race:carbonDumpThread # can still be looking at the existing socket descriptors. # Actually writing to these is protected by a mutex, though. race:DownstreamState::reconnect +signal:sigTermHandler -- 2.47.2