diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-09-28 10:20:02 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-09-28 10:20:02 +0000 |
| commit | 7914e90738ff37e6378b37632eb1f05bab7354d5 (patch) | |
| tree | 6b3d6a6bac4c7a3f82fa212d5f3ed324d81dc8bb /apps/plugin.c | |
| parent | edbf5d81f5a635a0db68039554b086f942b3e005 (diff) | |
| download | rockbox-7914e90738ff37e6378b37632eb1f05bab7354d5.zip rockbox-7914e90738ff37e6378b37632eb1f05bab7354d5.tar.gz rockbox-7914e90738ff37e6378b37632eb1f05bab7354d5.tar.bz2 rockbox-7914e90738ff37e6378b37632eb1f05bab7354d5.tar.xz | |
Commit a subset of the dual core changes that have to do with cache handling, stacks, firmware startup and thread startup. Tested on e200, H10-20GB, iPod Color and 5.5G. Thread function return implemented for all targets. Some changes to plugins to follow shortly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14879 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index f56d532..f0b86c0 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -509,6 +509,11 @@ static const struct plugin_api rockbox_api = { #if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) lcd_yuv_set_options, #endif + +#ifdef CACHE_FUNCTIONS_AS_CALL + flush_icache, + invalidate_icache, +#endif }; int plugin_load(const char* plugin, void* parameter) |