From 2101daef5a939d41a306fcccf2d94992f82723e2 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 15 Jan 2013 07:53:44 +0100 Subject: mixer/Alsa: use MultiSocketMonitor --- test/run_output.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/run_output.cxx') diff --git a/test/run_output.cxx b/test/run_output.cxx index 29fb6462c..505423479 100644 --- a/test/run_output.cxx +++ b/test/run_output.cxx @@ -21,6 +21,8 @@ #include "OutputControl.hxx" #include "conf.h" #include "Idle.hxx" +#include "Main.hxx" +#include "event/Loop.hxx" #include "GlobalEvents.hxx" #include "IOThread.hxx" @@ -42,6 +44,8 @@ extern "C" { #include #include +EventLoop *main_loop; + void GlobalEvents::Emit(gcc_unused Event event) { @@ -211,6 +215,8 @@ int main(int argc, char **argv) return 1; } + main_loop = new EventLoop(EventLoop::Default()); + io_thread_init(); if (!io_thread_start(&error)) { g_warning("%s", error->message); @@ -247,6 +253,8 @@ int main(int argc, char **argv) io_thread_deinit(); + delete main_loop; + config_global_finish(); return success ? EXIT_SUCCESS : EXIT_FAILURE; -- cgit v1.2.3