mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
vtl: fix possible race condition when terminating external program
This commit is contained in:
parent
bbb4aa0141
commit
0c2d95b08f
1 changed files with 4 additions and 0 deletions
|
|
@ -409,6 +409,7 @@ SystemExec::make_argp(std::string args) {
|
||||||
void
|
void
|
||||||
SystemExec::terminate ()
|
SystemExec::terminate ()
|
||||||
{
|
{
|
||||||
|
::pthread_mutex_lock(&write_lock);
|
||||||
close_stdin();
|
close_stdin();
|
||||||
if (pid) {
|
if (pid) {
|
||||||
::usleep(100000);
|
::usleep(100000);
|
||||||
|
|
@ -428,6 +429,8 @@ SystemExec::terminate ()
|
||||||
|
|
||||||
wait();
|
wait();
|
||||||
if (thread_active) pthread_join(thread_id_tt, NULL);
|
if (thread_active) pthread_join(thread_id_tt, NULL);
|
||||||
|
thread_active = false;
|
||||||
|
::pthread_mutex_unlock(&write_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
@ -626,6 +629,7 @@ SystemExec::close_stdin()
|
||||||
::close(pin[1]);
|
::close(pin[1]);
|
||||||
::close(pout[0]);
|
::close(pout[0]);
|
||||||
::close(pout[1]);
|
::close(pout[1]);
|
||||||
|
pin[1] = - 1; // mark as closed
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue