Merge pull request #1097 from ColinKinloch:cli_thread_join

jack: Wait for CLI thread to finish on quit
This commit is contained in:
Paul Ferrand 2022-07-14 10:55:01 +02:00 committed by GitHub
commit 1eb728c8d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -393,5 +393,6 @@ int main(int argc, char** argv)
std::cout << "Closing..." << '\n';
jack_client_close(client);
cli_thread.join();
return 0;
}