From 58a68ec08f35bca04547b8db96d2da7eba479509 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Sun, 15 Nov 2020 14:00:12 -0600 Subject: help --- P3/server.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'P3/server.c') diff --git a/P3/server.c b/P3/server.c index 6aa24e6..f99094f 100644 --- a/P3/server.c +++ b/P3/server.c @@ -190,9 +190,12 @@ int main(int argc, char **argv) { pthread_create(&wThreads[i], NULL, worker, NULL); //TODO: Worker arguments } // Create dynamic pool manager thread (extra credit A) - pthread_t pThread; - pthread_create(pThread, NULL, dynamic_pool_size_update, NULL); - //Server loop (RUNS FOREVER) + /*Commented out for now as it is not needed + pthread_t pThread; + pthread_create(pThread, NULL, dynamic_pool_size_update, NULL); //TODO: possible arguments + */ + + //Server loop (RUNS FOREVER) while (1) { //TODO: Add something else? -- cgit v1.2.3