aboutsummaryrefslogtreecommitdiffstats
path: root/src/Main.cxx
diff options
context:
space:
mode:
authorThomas Guillem <thomas.guillem@gmail.com>2014-09-15 14:03:19 +0200
committerMax Kellermann <max@duempel.org>2014-09-16 18:25:45 +0200
commit74fcbb382faebb80ee0b6942ad421b08c603894c (patch)
treee44235952ad384ef72f3d22770528e0b688081c3 /src/Main.cxx
parent9836b1dddd72a2da573f3922fd99f3bc7ef5feeb (diff)
downloadmpd-74fcbb382faebb80ee0b6942ad421b08c603894c.tar.gz
mpd-74fcbb382faebb80ee0b6942ad421b08c603894c.tar.xz
mpd-74fcbb382faebb80ee0b6942ad421b08c603894c.zip
android/Bridge: add shutdown()
Break the mainloop and terminate run call.
Diffstat (limited to 'src/Main.cxx')
-rw-r--r--src/Main.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Main.cxx b/src/Main.cxx
index d8384abfb..e41489688 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -696,6 +696,7 @@ int mpd_main(int argc, char *argv[])
#endif
delete instance->event_loop;
delete instance;
+ instance = nullptr;
#ifndef ANDROID
daemonize_finish();
#endif
@@ -727,4 +728,12 @@ Java_org_musicpd_Bridge_run(JNIEnv *env, jclass, jobject _context)
Environment::Deinitialise(env);
}
+gcc_visibility_default
+JNIEXPORT void JNICALL
+Java_org_musicpd_Bridge_shutdown(JNIEnv *, jclass)
+{
+ if (instance != nullptr)
+ instance->event_loop->Break();
+}
+
#endif