move thread naming to util

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2020-12-07 06:22:16 +03:00
parent aace200899
commit 3100d4f902
12 changed files with 63 additions and 39 deletions

View file

@ -7,7 +7,7 @@
*/
#include "Log.h"
#include <pthread.h>
#include "util.h"
//for std::transform
#include <algorithm>
@ -180,7 +180,8 @@ namespace log {
void Log::Run ()
{
pthread_setname_np(pthread_self(), "Logging");
i2p::util::SetThreadName("Logging");
Reopen ();
while (m_IsRunning)
{