From d2cc5ce58e875a28742ab2fb1707e195b7fc1e34 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Mon, 17 Jan 2011 22:28:36 +0000 Subject: Fix player becoming unresponsive on Stop / Pause in some cases. Fix for FS#11856: In tagtree_buffer_event, do not wait for database to come online as that may never happen. Rather, wait until it either has come online or has decided that this will never happen. Added a new function to tagcache.c to export this information. Flyspray: FS#11865 Author: Michael Hohmuth git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29081 a1c6a512-1295-4272-9138-f99709370657 --- apps/tagcache.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/tagcache.c') diff --git a/apps/tagcache.c b/apps/tagcache.c index b3a16a3..50c6253 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -4746,6 +4746,10 @@ bool tagcache_is_initialized(void) { return tc_stat.initialized; } +bool tagcache_is_fully_initialized(void) +{ + return tc_stat.readyvalid; +} bool tagcache_is_usable(void) { return tc_stat.initialized && tc_stat.ready; -- cgit v1.1