X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Funixsock.c;h=3bdd8c27b70cd35d58cee6e89b2f4d49d00252e1;hb=e5c3463c070701f4e5556ac3e95b78bb972b5d57;hp=8f06046c5e3d586d8200d92d15eccf73965ec6f2;hpb=5f3edac68db5716fbf106392b99b6abe33d90d5f;p=collectd.git diff --git a/src/unixsock.c b/src/unixsock.c index 8f06046c..3bdd8c27 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -164,7 +164,7 @@ static void *us_handle_client (void *arg) free (arg); arg = NULL; - DEBUG ("Reading from fd #%i", fd); + DEBUG ("unixsock plugin: us_handle_client: Reading from fd #%i", fd); fhin = fdopen (fd, "r"); if (fhin == NULL) @@ -270,7 +270,7 @@ static void *us_handle_client (void *arg) } } /* while (fgets) */ - DEBUG ("Exiting.."); + DEBUG ("unixsock plugin: us_handle_client: Exiting.."); fclose (fhin); fclose (fhout); @@ -383,8 +383,15 @@ static int us_config (const char *key, const char *val) static int us_init (void) { + static int have_init = 0; + int status; + /* Initialize only once. */ + if (have_init != 0) + return (0); + have_init = 1; + loop = 1; status = pthread_create (&listen_thread, NULL, us_server_thread, NULL);