Treewide: remove vim modelines from C code files
[collectd.git] / src / gmond.c
index 984d5f5..7bfb18d 100644 (file)
@@ -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 : */