X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Funixsock.c;h=57f34501f8f0dfd423c4c1c8435ea71e9caaf2bc;hb=bc51ef217e871b80152eccd4e5f32659500f75f3;hp=d800906ecc9e76c544486ce41f6f03b2762d1c81;hpb=8a277e54b4ed7bccb4b3a2e7668792cd5303d3ac;p=collectd.git diff --git a/src/unixsock.c b/src/unixsock.c index d800906e..57f34501 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -278,7 +278,7 @@ static void *us_handle_client (void *arg) return ((void *) 0); } /* void *us_handle_client */ -static void *us_server_thread (void *arg) +static void *us_server_thread (void __attribute__((unused)) *arg) { int status; int *remote_fd; @@ -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);