 | | Primarily, your job is to ensure that worker thread accesses to shared data are appropriately synchronized. To do so, you'd add the necessary calls to the functions pthread_mutex_lock, pthread_mutex_unlock, pthread_cond_wait, and pthread_cond_signal in the server management routines (and any submodules or libraries they call). | |
|