diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-01-17 22:28:36 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-01-17 22:28:36 +0000 |
| commit | d2cc5ce58e875a28742ab2fb1707e195b7fc1e34 (patch) | |
| tree | 7e874330a1db76711d63d76bc77204032c8296b4 /apps/tagcache.h | |
| parent | 0171408408cfaf074a8c2f2c3eddbae658e45e6c (diff) | |
| download | rockbox-d2cc5ce58e875a28742ab2fb1707e195b7fc1e34.zip rockbox-d2cc5ce58e875a28742ab2fb1707e195b7fc1e34.tar.gz rockbox-d2cc5ce58e875a28742ab2fb1707e195b7fc1e34.tar.bz2 rockbox-d2cc5ce58e875a28742ab2fb1707e195b7fc1e34.tar.xz | |
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
Diffstat (limited to 'apps/tagcache.h')
| -rw-r--r-- | apps/tagcache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h index 4fffcca..8c09063 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -247,6 +247,7 @@ void tagcache_unload_ramcache(void); #endif void tagcache_init(void) INIT_ATTR; bool tagcache_is_initialized(void); +bool tagcache_is_fully_initialized(void); bool tagcache_is_usable(void); void tagcache_start_scan(void); void tagcache_stop_scan(void); |