#endif
])
+# check for pthread_setname_np
+SAVE_LDFLAGS=$LDFLAGS
+LDFLAGS="$LDFLAGS -lpthread"
+
+AC_MSG_CHECKING([if have pthread_setname_np])
+ have_pthread_setname_np="no"
+ AC_LINK_IFELSE([AC_LANG_PROGRAM(
+[[
+#if HAVE_PTHREAD_H
+#include <pthread.h>
+#endif
+]],
+[[
+ pthread_setname_np(pthread_self(), "conftest");
+]]
+ )], [
+ have_pthread_setname_np="yes"
+ AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [ pthread_setname_np() is available.])
+ ])
+
+AC_MSG_RESULT([$have_pthread_set_name_np])
+
+# check for pthread_set_name_np
+AC_MSG_CHECKING([if have pthread_set_name_np])
+ have_pthread_set_name_np="no"
+ AC_LINK_IFELSE([AC_LANG_PROGRAM(
+[[
+#if HAVE_PTHREAD_H
+#include <pthread.h>
+#endif
+]],
+[[
+ pthread_set_name_np(pthread_self(), "conftest");
+]]
+ )], [
+ have_pthread_set_name_np="yes"
+ AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [ pthread_set_name_np() is available.])
+ ])
+AC_MSG_RESULT([$have_pthread_set_name_np])
+
+LDFLAGS=$SAVE_LDFLAGS
+
#
# Checks for libraries begin here
#
memset (tmp, 0, sizeof (*tmp));
status = plugin_thread_create (tmp, /* attr = */ NULL,
- camqp_subscribe_thread, conf);
+ camqp_subscribe_thread, conf, "amqp subscribe");
if (status != 0)
{
char errbuf[1024];
* Sebastian Harl <sh at tokkee.org>
**/
+#define _GNU_SOURCE
#include "collectd.h"
#include "common.h"
if (pthread_create (read_threads + read_threads_num, NULL,
plugin_read_thread, NULL) == 0)
{
+#if defined(HAVE_PTHREAD_SETNAME_NP) || defined(HAVE_PTHREAD_SET_NAME_NP)
+ char thread_name[16];
+ sstrncpy (thread_name, "plugin reader", sizeof(thread_name));
+# if defined(HAVE_PTHREAD_SETNAME_NP)
+ pthread_setname_np (*(read_threads + read_threads_num),
+ thread_name);
+# elif defined(HAVE_PTHREAD_SET_NAME_NP)
+ pthread_set_name_np (*(read_threads + read_threads_num),
+ thread_name);
+# endif
+#endif
read_threads_num++;
}
else
"with status %i (%s).", status,
sstrerror (status, errbuf, sizeof (errbuf)));
return;
+ } else {
+#if defined(HAVE_PTHREAD_SETNAME_NP) || defined(HAVE_PTHREAD_SET_NAME_NP)
+ char thread_name[16];
+ sstrncpy (thread_name, "plugin writer", sizeof(thread_name));
+# if defined(HAVE_PTHREAD_SETNAME_NP)
+ pthread_setname_np (*(write_threads + write_threads_num),
+ thread_name);
+# elif defined(HAVE_PTHREAD_SET_NAME_NP)
+ pthread_set_name_np (*(write_threads + write_threads_num),
+ thread_name);
+# endif
+#endif
+ write_threads_num++;
}
-
- write_threads_num++;
} /* for (i) */
} /* }}} void start_write_threads */
} /* void *plugin_thread_start */
int plugin_thread_create (pthread_t *thread, const pthread_attr_t *attr,
- void *(*start_routine) (void *), void *arg)
+ void *(*start_routine) (void *), void *arg, char *name)
{
plugin_thread_t *plugin_thread;
+ int ret;
plugin_thread = malloc (sizeof (*plugin_thread));
if (plugin_thread == NULL)
plugin_thread->start_routine = start_routine;
plugin_thread->arg = arg;
- return pthread_create (thread, attr,
+ ret = pthread_create (thread, attr,
plugin_thread_start, plugin_thread);
+
+ if (ret == 0 && name != NULL) {
+#if defined(HAVE_PTHREAD_SETNAME_NP) || defined(HAVE_PTHREAD_SET_NAME_NP)
+ char thread_name[16];
+ sstrncpy (thread_name, name, sizeof(thread_name));
+# if defined(HAVE_PTHREAD_SETNAME_NP)
+ pthread_setname_np (*thread, thread_name);
+# elif defined(HAVE_PTHREAD_SET_NAME_NP)
+ pthread_set_name_np (*thread, thread_name);
+# endif
+#endif
+ }
+
+ return ret;
} /* int plugin_thread_create */
/* vim: set sw=8 ts=8 noet fdm=marker : */
*/
int plugin_thread_create (pthread_t *thread, const pthread_attr_t *attr,
- void *(*start_routine) (void *), void *arg);
+ void *(*start_routine) (void *), void *arg, char *name);
/*
* Plugins need to implement this
return (-1);
status = plugin_thread_create (&listen_thread, NULL, dns_child_loop,
- (void *) 0);
+ (void *) 0, "dns listen");
if (status != 0)
{
char errbuf[1024];
collectors[i]->socket = NULL;
if (plugin_thread_create (&collectors[i]->thread,
- &ptattr, collect, collectors[i]) != 0) {
+ &ptattr, collect, collectors[i],
+ "email collector") != 0) {
char errbuf[1024];
log_err ("plugin_thread_create() failed: %s",
sstrerror (errno, errbuf, sizeof (errbuf)));
static int email_init (void)
{
if (plugin_thread_create (&connector, NULL,
- open_connection, NULL) != 0) {
+ open_connection, NULL, "email listener") != 0) {
char errbuf[1024];
disabled = 1;
log_err ("plugin_thread_create() failed: %s",
pthread_attr_init (&attr);
pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
- plugin_thread_create (&t, &attr, exec_read_one, (void *) pl);
+ plugin_thread_create (&t, &attr, exec_read_one, (void *) pl, "exec read");
pthread_attr_destroy (&attr);
} /* for (pl) */
pthread_attr_init (&attr);
pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
- plugin_thread_create (&t, &attr, exec_notification_one, (void *) pln);
+ plugin_thread_create (&t, &attr, exec_notification_one, (void *) pln,
+ "exec notify");
pthread_attr_destroy (&attr);
} /* for (pl) */
mc_receive_thread_loop = 1;
status = plugin_thread_create (&mc_receive_thread_id, /* attr = */ NULL,
- mc_receive_thread, /* args = */ NULL);
+ mc_receive_thread, /* args = */ NULL, "gmond recv");
if (status != 0)
{
ERROR ("gmond plugin: Starting receive thread failed.");
c_ipmi_active = 1;
status = plugin_thread_create (&thread_id, /* attr = */ NULL, thread_main,
- /* user data = */ NULL);
+ /* user data = */ NULL, "ipmi");
if (status != 0)
{
c_ipmi_active = 0;
status = plugin_thread_create (&dispatch_thread_id,
NULL /* no attributes */,
dispatch_thread,
- NULL /* no argument */);
+ NULL /* no argument */, "network dispatch");
if (status != 0)
{
char errbuf[1024];
status = plugin_thread_create (&receive_thread_id,
NULL /* no attributes */,
receive_thread,
- NULL /* no argument */);
+ NULL /* no argument */, "network recv");
if (status != 0)
{
char errbuf[1024];
status = plugin_thread_create (&collector_thread_id,
/* attrs = */ NULL,
collector_thread,
- /* args = */ NULL);
+ /* args = */ NULL, "pinba collector");
if (status != 0)
{
char errbuf[1024];
ping_thread_loop = 1;
ping_thread_error = 0;
status = plugin_thread_create (&ping_thread_id, /* attr = */ NULL,
- ping_thread, /* arg = */ (void *) 0);
+ ping_thread, /* arg = */ (void *) 0, "ping");
if (status != 0)
{
ping_thread_loop = 0;
ERROR("python: Unable to create pipe.");
return 1;
}
- if (plugin_thread_create(&thread, NULL, cpy_interactive, pipefd + 1)) {
+ if (plugin_thread_create(&thread, NULL, cpy_interactive, pipefd + 1,
+ "python interpreter")) {
ERROR("python: Error creating thread for interactive interpreter.");
}
if(read(pipefd[0], &buf, 1))
pthread_mutex_unlock (&cache_lock);
status = plugin_thread_create (&queue_thread, /* attr = */ NULL,
- rrd_queue_thread, /* args = */ NULL);
+ rrd_queue_thread, /* args = */ NULL, "rrdtool queue");
if (status != 0)
{
ERROR ("rrdtool plugin: Cannot create queue-thread.");
}
status = plugin_thread_create(&sr_thread, NULL, sigrok_read_thread,
- NULL);
+ NULL, "sigrok read");
if (status != 0)
{
char errbuf[1024];
DEBUG ("Spawning child to handle connection on fd #%i", *remote_fd);
status = plugin_thread_create (&th, &th_attr,
- us_handle_client, (void *) remote_fd);
+ us_handle_client, (void *) remote_fd, "unixsock client");
if (status != 0)
{
char errbuf[1024];
loop = 1;
status = plugin_thread_create (&listen_thread, NULL,
- us_server_thread, NULL);
+ us_server_thread, NULL, "unixsock listener");
if (status != 0)
{
char errbuf[1024];