mqtt, gps: add name parameter to plugin_thread_create()
authorMarc Fournier <marc.fournier@camptocamp.com>
Wed, 16 Nov 2016 06:49:25 +0000 (07:49 +0100)
committerMarc Fournier <marc.fournier@camptocamp.com>
Wed, 16 Nov 2016 06:49:25 +0000 (07:49 +0100)
src/gps.c
src/mqtt.c

index b529422..81056e3 100644 (file)
--- a/src/gps.c
+++ b/src/gps.c
@@ -300,7 +300,7 @@ static int cgps_init (void)
          CDTIME_T_TO_DOUBLE (cgps_config_data.timeout),
          CDTIME_T_TO_DOUBLE (cgps_config_data.pause_connect));
 
-  status = plugin_thread_create (&cgps_thread_id, NULL, cgps_thread, NULL);
+  status = plugin_thread_create (&cgps_thread_id, NULL, cgps_thread, NULL, "gps");
   if (status != 0)
   {
     ERROR ("gps plugin: pthread_create() failed.");
index c08fd29..32304f0 100644 (file)
@@ -776,7 +776,8 @@ static int mqtt_init (void)
         status = plugin_thread_create (&subscribers[i]->thread,
                 /* attrs = */ NULL,
                 /* func  = */ subscribers_thread,
-                /* args  = */ subscribers[i]);
+                /* args  = */ subscribers[i],
+                /* name  = */ "mqtt");
         if (status != 0)
         {
             char errbuf[1024];