mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
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:
parent
e30e692b36
commit
c78254fcd1
3 changed files with 11 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue