Name.hxx 1.85 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef MPD_THREAD_NAME_HXX
#define MPD_THREAD_NAME_HXX

23 24
#include "config.h"

25
#if defined(HAVE_PTHREAD_SETNAME_NP) && !defined(__NetBSD__)
26
#  define HAVE_THREAD_NAME
27
#  include <pthread.h>
28
#elif defined(HAVE_PRCTL)
29
#  include <sys/prctl.h>
30 31 32
#  ifdef PR_SET_NAME
#    define HAVE_THREAD_NAME
#  endif
33 34
#endif

35
#ifdef HAVE_THREAD_NAME
36
#include "util/StringFormat.hxx"
37 38
#endif

39
static inline void
40
SetThreadName(const char *name) noexcept
41
{
42 43 44 45 46
#if defined(HAVE_PTHREAD_SETNAME_NP) && !defined(__NetBSD__)
	/* not using pthread_setname_np() on NetBSD because it
	   requires a non-const pointer argument, which we don't have
	   here */

47 48 49
#ifdef __APPLE__
	pthread_setname_np(name);
#else
50
	pthread_setname_np(pthread_self(), name);
51
#endif
52 53
#elif defined(HAVE_PRCTL) && defined(PR_SET_NAME)
	prctl(PR_SET_NAME, (unsigned long)name, 0, 0, 0);
54 55 56 57 58 59 60
#else
	(void)name;
#endif
}

template<typename... Args>
static inline void
61
FormatThreadName(const char *fmt, gcc_unused Args&&... args) noexcept
62
{
63
#ifdef HAVE_THREAD_NAME
64
	SetThreadName(StringFormat<16>(fmt, args...));
65 66 67 68 69 70
#else
	(void)fmt;
#endif
}

#endif