summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fa82af1)
raw | patch | inline | side by side (parent: fa82af1)
author | Manuel Luis SanmartĂn Rozada <manuel.luis@gmail.com> | |
Sat, 8 Feb 2014 22:13:01 +0000 (23:13 +0100) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Wed, 16 Nov 2016 06:39:55 +0000 (07:39 +0100) |
16 files changed:
configure.ac | patch | blob | history | |
src/amqp.c | patch | blob | history | |
src/daemon/plugin.c | patch | blob | history | |
src/daemon/plugin.h | patch | blob | history | |
src/dns.c | patch | blob | history | |
src/email.c | patch | blob | history | |
src/exec.c | patch | blob | history | |
src/gmond.c | patch | blob | history | |
src/ipmi.c | patch | blob | history | |
src/network.c | patch | blob | history | |
src/pinba.c | patch | blob | history | |
src/ping.c | patch | blob | history | |
src/python.c | patch | blob | history | |
src/rrdtool.c | patch | blob | history | |
src/sigrok.c | patch | blob | history | |
src/unixsock.c | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index ac738f80ff813201f43fce310f24a14e6bd642b2..db1754345a5dbba4ffc829e0740cd0d2f9e5193c 100644 (file)
--- a/configure.ac
+++ b/configure.ac
@@ -1662,6 +1662,48 @@ AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, ks
#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
#
diff --git a/src/amqp.c b/src/amqp.c
index 882df7c576d0bc513afa54c87c18d58278b880c1..4089fc321ee5e04510e66fa1f1274a55d450cd2a 100644 (file)
--- a/src/amqp.c
+++ b/src/amqp.c
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];
diff --git a/src/daemon/plugin.c b/src/daemon/plugin.c
index 8b84e6a7920583c48ea3f6570dc9a900b9ec79d6..987f40aaf431c030de6cff4b3b4007b72c806d72 100644 (file)
--- a/src/daemon/plugin.c
+++ b/src/daemon/plugin.c
* 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 : */
diff --git a/src/daemon/plugin.h b/src/daemon/plugin.h
index 5a4e4c75af12679c0c84c68b7b0892c5a7cc0c0a..0f4d267c75149ad8017df77012a72e7988a53348 100644 (file)
--- a/src/daemon/plugin.h
+++ b/src/daemon/plugin.h
*/
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
diff --git a/src/dns.c b/src/dns.c
index c8e794eb032f83dd786455767819214548c758a3..4a5c0fa39c4f966ef03c17b53d3a95f352b032ff 100644 (file)
--- a/src/dns.c
+++ b/src/dns.c
return (-1);
status = plugin_thread_create (&listen_thread, NULL, dns_child_loop,
- (void *) 0);
+ (void *) 0, "dns listen");
if (status != 0)
{
char errbuf[1024];
diff --git a/src/email.c b/src/email.c
index 1027eb90ad1fed60e77219fa8b71dc399ab315e7..334e8764bb3de27a7bfa843adf6d88ae2616a166 100644 (file)
--- a/src/email.c
+++ b/src/email.c
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",
diff --git a/src/exec.c b/src/exec.c
index fc40d4a9eff65e1d1300e2160466e9e6d01402b9..70b5fd0400cfb133fbf51d66039ebfbbbd4de36b 100644 (file)
--- a/src/exec.c
+++ b/src/exec.c
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) */
diff --git a/src/gmond.c b/src/gmond.c
index 13ec638950151403bcdee841fb45523c565a34ec..0743d8e1f42e95a983ec6aafd44bfb80fbc152f9 100644 (file)
--- a/src/gmond.c
+++ b/src/gmond.c
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.");
diff --git a/src/ipmi.c b/src/ipmi.c
index 3267275dadac14d21f24a592658cd952cd829188..24986b820a04fca868430a91f711bb24f5bcf45d 100644 (file)
--- a/src/ipmi.c
+++ b/src/ipmi.c
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;
diff --git a/src/network.c b/src/network.c
index 484e610053bc3d4248c127de9e82a32dcd693f52..6b43ae75b47982609ffbeb702488c1d554e1e049 100644 (file)
--- a/src/network.c
+++ b/src/network.c
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];
diff --git a/src/pinba.c b/src/pinba.c
index 5571ff2600b3cd98c5f1c236323fe97d50db26c5..ba8069da3fafdf492de6756b6a7885b23c62c468 100644 (file)
--- a/src/pinba.c
+++ b/src/pinba.c
status = plugin_thread_create (&collector_thread_id,
/* attrs = */ NULL,
collector_thread,
- /* args = */ NULL);
+ /* args = */ NULL, "pinba collector");
if (status != 0)
{
char errbuf[1024];
diff --git a/src/ping.c b/src/ping.c
index 64408491d410c71b7d4f6322b60de8175139660c..66a254d52d9d5ded6fd39dab3d0279523548b0b1 100644 (file)
--- a/src/ping.c
+++ b/src/ping.c
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;
diff --git a/src/python.c b/src/python.c
index 5274262bbd6b5826ca40b8ec6940a20a7ea297cb..0dae99d8242f69804a2c2b3e1ffee2e96b132aa9 100644 (file)
--- a/src/python.c
+++ b/src/python.c
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))
diff --git a/src/rrdtool.c b/src/rrdtool.c
index f5e01c81fe522d4fba76842156540594a24d3ef3..3d5ad9b90ff3a77afd90305e50ee27709fdf93af 100644 (file)
--- a/src/rrdtool.c
+++ b/src/rrdtool.c
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.");
diff --git a/src/sigrok.c b/src/sigrok.c
index 78837cf825a18b57990726e3a84e5f44a1ce663e..6a8003c076e49cec33ac2e3e95cae0c4486de196 100644 (file)
--- a/src/sigrok.c
+++ b/src/sigrok.c
}
status = plugin_thread_create(&sr_thread, NULL, sigrok_read_thread,
- NULL);
+ NULL, "sigrok read");
if (status != 0)
{
char errbuf[1024];
diff --git a/src/unixsock.c b/src/unixsock.c
index 73037e49b2e2b7a05739139c92911e1d3a33734d..4a7652ab5a1f4d924902eb5229285db84b81d561 100644 (file)
--- a/src/unixsock.c
+++ b/src/unixsock.c
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];