summaryrefslogtreecommitdiff
path: root/gtk2_ardour/system_exec.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-04-03 22:29:04 +0200
committerRobin Gareus <robin@gareus.org>2013-04-03 22:29:37 +0200
commit9301991f6e77f16c6cefe3f0c92fdc02da687f8b (patch)
tree252be11fb42f898a9833585a21911a82e7b6cc9c /gtk2_ardour/system_exec.cc
parent399aee309d4e81d73be463cc0890906acfdc09d9 (diff)
vtl: video-monitor interaction
* Menu > View > Video Monitor -- bi-directional communication with xjadeo for window-state and OSD. * fix saving state on session close (wait for xjadeo to terminate)
Diffstat (limited to 'gtk2_ardour/system_exec.cc')
-rw-r--r--gtk2_ardour/system_exec.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/system_exec.cc b/gtk2_ardour/system_exec.cc
index 00b212710e..3af660ef77 100644
--- a/gtk2_ardour/system_exec.cc
+++ b/gtk2_ardour/system_exec.cc
@@ -418,7 +418,7 @@ SystemExec::terminate ()
if (pid) {
::fprintf(stderr, "Child process is running. trying SIGTERM\n");
::kill(pid, SIGTERM);
- ::usleep(10000);
+ ::usleep(50000);
wait(WNOHANG);
}
if (pid) {