Split server stop() and join()
For consistency with the other components, call stop() and join() separately. This allows to stop all components, then join them all.
This commit is contained in:
@@ -909,7 +909,10 @@ sc_server_stop(struct sc_server *server) {
|
||||
sc_cond_signal(&server->cond_stopped);
|
||||
sc_intr_interrupt(&server->intr);
|
||||
sc_mutex_unlock(&server->mutex);
|
||||
}
|
||||
|
||||
void
|
||||
sc_server_join(struct sc_server *server) {
|
||||
sc_thread_join(&server->thread, NULL);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user