From: Peter van Dijk Date: Tue, 10 Sep 2024 08:13:32 +0000 (+0200) Subject: auth signer: set thread name X-Git-Tag: rec-5.2.0-alpha1~89^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F14642%2Fhead;p=thirdparty%2Fpdns.git auth signer: set thread name --- diff --git a/pdns/signingpipe.cc b/pdns/signingpipe.cc index 0e05560564..25f3d59b9f 100644 --- a/pdns/signingpipe.cc +++ b/pdns/signingpipe.cc @@ -1,3 +1,4 @@ +#include "threadname.hh" #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -49,6 +50,7 @@ int readn(int fd, void* buffer, unsigned int len) void* ChunkedSigningPipe::helperWorker(ChunkedSigningPipe* csp, int fd) try { + setThreadName("pdns/signer"); csp->worker(fd); return nullptr; }