X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgmond.c;h=7bfb18d81762a2a00673eb47d0406b4c5788e86d;hb=3e891e50eedcb53ed42b140b942947856ca9c8a0;hp=984d5f5288891b6d1bba8fdf8310ca87b4f9bda1;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/gmond.c b/src/gmond.c index 984d5f52..7bfb18d8 100644 --- a/src/gmond.c +++ b/src/gmond.c @@ -812,8 +812,9 @@ static int mc_receive_thread_start(void) /* {{{ */ mc_receive_thread_loop = 1; - status = plugin_thread_create(&mc_receive_thread_id, /* attr = */ NULL, - mc_receive_thread, /* args = */ NULL); + status = + plugin_thread_create(&mc_receive_thread_id, /* attr = */ NULL, + mc_receive_thread, /* args = */ NULL, "gmond recv"); if (status != 0) { ERROR("gmond plugin: Starting receive thread failed."); mc_receive_thread_loop = 0; @@ -1029,5 +1030,3 @@ void module_register(void) { plugin_register_init("gmond", gmond_init); plugin_register_shutdown("gmond", gmond_shutdown); } - -/* vim: set sw=2 sts=2 et fdm=marker : */