From 4106ef6c440ffe67fd2269247fb7fc15c3e1d114 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Sun, 15 Nov 2020 13:18:04 -0600 Subject: do things --- P3/server.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'P3') diff --git a/P3/server.c b/P3/server.c index 3a2a537..9aa0a5b 100644 --- a/P3/server.c +++ b/P3/server.c @@ -180,8 +180,11 @@ int main(int argc, char **argv) { // Start the server init(port); // Create dispatcher and worker threads (all threads should be detachable) - pthread_t thread; - pthread_create(&thread, NULL, dispatch, NULL); // DEBUG! figure out last arg + pthread_t dThreads[dispatchers]; + pthread_create(&dThreads, NULL, dispatch, NULL); // DEBUG! figure out last arg + + pthread_t wThreads[workers]; + pthread_create(&wThreads, NULL, worker, NULL); //TODO: Worker arguments. // Create dynamic pool manager thread (extra credit A) -- cgit v1.2.3