X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Funixsock.c;h=2df4e096e7a63b03c3dda1b89143d4e1c405a19d;hb=f66916deea905254061bb07245e007471faf2ecf;hp=73037e49b2e2b7a05739139c92911e1d3a33734d;hpb=41288c6a9ed050b41ad47184aa1b53668c3588cc;p=collectd.git diff --git a/src/unixsock.c b/src/unixsock.c index 73037e49..2df4e096 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -378,7 +378,7 @@ static void *us_server_thread (void __attribute__((unused)) *arg) 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 conn"); if (status != 0) { char errbuf[1024]; @@ -459,7 +459,7 @@ static int us_init (void) loop = 1; status = plugin_thread_create (&listen_thread, NULL, - us_server_thread, NULL); + us_server_thread, NULL, "unixsock listen"); if (status != 0) { char errbuf[1024];