From 6241350ba5cf499bbf4ebb214b2d0e76ec786375 Mon Sep 17 00:00:00 2001 From: PolynomialDivision Date: Wed, 23 Aug 2017 17:52:37 +0200 Subject: [PATCH] Remove old client entrys --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index f1e6bb4..e0d6e00 100644 --- a/src/main.c +++ b/src/main.c @@ -81,8 +81,8 @@ int main(int argc, char **argv) { pthread_t tid_probe; pthread_create(&tid_probe, NULL, &remove_array_thread, NULL); - //pthread_t tid_client; - //pthread_create(&tid_client, NULL, &remove_client_array_thread, NULL); + pthread_t tid_client; + pthread_create(&tid_client, NULL, &remove_client_array_thread, NULL); pthread_t tid_get_client; pthread_create(&tid_get_client, NULL, &update_clients_thread, NULL);