pthread_cond_wait(&nextSocket_cond, &interpreter_mut); } nextSocket = sock; pthread_cond_signal(&interpreter_cond); pthread_mutex_unlock(&interpreter_mut);if(shuttingdown) {break; } } }pthread_cond_broadcast(&interpreter_cond);for(inti =0; i < THREAD_POOL; i++) { pthread_join(interpre...