2019-01-10 19:41:51 +00:00
|
|
|
#include <util/threading.hpp>
|
2019-07-09 00:06:22 +00:00
|
|
|
|
|
|
|
#include <util/logger.hpp>
|
|
|
|
|
|
|
|
#ifdef POSIX
|
|
|
|
#include <pthread.h>
|
2019-07-10 16:46:21 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <pthread_np.h>
|
|
|
|
#endif
|
2019-07-09 00:06:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
|
|
|
void
|
|
|
|
SetThreadName(const std::string& name)
|
|
|
|
{
|
|
|
|
#ifdef POSIX
|
|
|
|
#ifdef __MACH__
|
|
|
|
const int rc = pthread_setname_np(name.c_str());
|
2019-07-10 16:46:21 +00:00
|
|
|
#else
|
|
|
|
#ifdef __FreeBSD__
|
|
|
|
pthread_setname_np(pthread_self(), name.c_str());
|
2019-07-09 00:06:22 +00:00
|
|
|
#else
|
|
|
|
const int rc = pthread_setname_np(pthread_self(), name.c_str());
|
|
|
|
if(rc)
|
|
|
|
{
|
|
|
|
LogError("Failed to set thread name to ", name, " errno = ", rc,
|
|
|
|
" errstr = ", strerror(rc));
|
|
|
|
}
|
2019-07-10 16:46:21 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
2019-07-09 00:06:22 +00:00
|
|
|
#else
|
|
|
|
LogInfo("Thread name setting not supported on this platform");
|
|
|
|
(void)name;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} // namespace util
|
|
|
|
} // namespace llarp
|