64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
|
|
// This file is part of the "Nazara Engine - Core module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#include <Nazara/Core/Posix/ThreadImpl.hpp>
|
|
#include <Nazara/Core/Error.hpp>
|
|
#include <array>
|
|
#include <Nazara/Core/Debug.hpp>
|
|
|
|
// https://stackoverflow.com/questions/2369738/how-to-set-the-name-of-a-thread-in-linux-pthreads
|
|
|
|
namespace Nz::PlatformImpl
|
|
{
|
|
pthread_t GetCurrentThreadHandle()
|
|
{
|
|
return ::pthread_self();
|
|
}
|
|
|
|
std::string GetCurrentThreadName()
|
|
{
|
|
return GetThreadName(::pthread_self());
|
|
}
|
|
|
|
std::string GetThreadName(pthread_t threadHandle)
|
|
{
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
std::array<char, 16> name = { "<error>" };
|
|
::pthread_getname_np(threadHandle, &name[0], name.size());
|
|
|
|
return std::string(&name[0]);
|
|
#else
|
|
NazaraUnused(threadHandle)
|
|
return "<unsupported>";
|
|
#endif
|
|
}
|
|
|
|
void SetCurrentThreadName(const char* threadName)
|
|
{
|
|
#if defined(__linux__) || defined(__FreeBSD__)
|
|
::pthread_setname_np(::pthread_self(), threadName);
|
|
#elif defined(__APPLE__)
|
|
::pthread_setname_np(threadName);
|
|
#else
|
|
NazaraUnused(threadName)
|
|
NazaraWarning("setting current thread name is not supported on this platform");
|
|
#endif
|
|
}
|
|
|
|
void SetThreadName(pthread_t threadHandle, const char* threadName)
|
|
{
|
|
#if defined(__linux__) || defined(__FreeBSD__)
|
|
::pthread_setname_np(threadHandle, threadName);
|
|
#elif defined(__APPLE__)
|
|
NazaraUnused(threadHandle)
|
|
NazaraUnused(threadName)
|
|
NazaraWarning("only current thread name can be set on MacOS X");
|
|
#else
|
|
NazaraUnused(threadHandle)
|
|
NazaraUnused(threadName)
|
|
NazaraWarning("setting a thread name is not supported on this platform");
|
|
#endif
|
|
}
|
|
}
|