NOOP, whitespace change only
[ardour.git] / libs / ardour / worker.cc
index d48ac959ba5b80a00877e8778936ce7456c43a6f..d5238adb60e49377e95810c5b3e1451b28e688a6 100644 (file)
 */
 
 #include <stdlib.h>
+#include <unistd.h>
 
 #include "ardour/worker.h"
 #include "pbd/error.h"
 
+#include <glibmm/timer.h>
+
 namespace ARDOUR {
 
 Worker::Worker(Workee* workee, uint32_t ring_size)
@@ -127,7 +130,7 @@ Worker::run()
                        continue;
                }
                while (!verify_message_completeness(_requests)) {
-                       ::usleep(2000);
+                       Glib::usleep(2000);
                        if (_exit) {
                                return;
                        }