summaryrefslogtreecommitdiff
path: root/gtk2_ardour/system_exec.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-12-03 10:24:34 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2013-12-03 10:24:34 -0500
commit69df7763a19c56e83dd95b964c51172fbef7f22b (patch)
treec3faac678bffb5e34c19f25774ce21ff8ae943a4 /gtk2_ardour/system_exec.cc
parent0258f2958b05c420105d0e684681193e404201ac (diff)
switch from using Sleep/usleep to Glib::usleep() (and remember that we need to make Glib::usleep() actually work on windows one day)
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 59f3647e51..d0188d5b36 100644
--- a/gtk2_ardour/system_exec.cc
+++ b/gtk2_ardour/system_exec.cc
@@ -537,7 +537,7 @@ SystemExec::terminate ()
if (pid) {
::kill(pid, SIGTERM);
- ::usleep(50000);
+ usleep(50000);
sched_yield();
wait(WNOHANG);
}