summaryrefslogtreecommitdiff
path: root/apps/playlist.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-10-16 01:25:17 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-10-16 01:25:17 +0000
commita9b2fb5ee3114fe835f6515b6aeae7454f66d821 (patch)
treefc4e96d0c1f215565918406c8827b16b806c1345 /apps/playlist.c
parenta3fbbc9fa7e12fd3fce122bbd235dc362050e024 (diff)
downloadrockbox-a9b2fb5ee3114fe835f6515b6aeae7454f66d821.tar.gz
rockbox-a9b2fb5ee3114fe835f6515b6aeae7454f66d821.zip
Finally full multicore support for PortalPlayer 502x targets with an eye towards the possibility of other types. All SVN targets the low-lag code to speed up blocking operations. Most files are modified here simple due to a name change to actually support a real event object and a param change to create_thread. Add some use of new features but just sit on things for a bit and leave full integration for later. Work will continue on to address size on sensitive targets and simplify things if possible. Any PP target having problems with SWP can easily be changed to sw corelocks with one #define change in config.h though only PP5020 has shown an issue and seems to work without any difficulties.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15134 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist.c')
-rw-r--r--apps/playlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 47a1f3730d..025e07d8a7 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -1163,7 +1163,7 @@ static int compare(const void* p1, const void* p2)
1163 */ 1163 */
1164static void playlist_thread(void) 1164static void playlist_thread(void)
1165{ 1165{
1166 struct event ev; 1166 struct queue_event ev;
1167 bool dirty_pointers = false; 1167 bool dirty_pointers = false;
1168 static char tmp[MAX_PATH+1]; 1168 static char tmp[MAX_PATH+1];
1169 1169
@@ -1889,8 +1889,8 @@ void playlist_init(void)
1889 memset(playlist->filenames, 0, 1889 memset(playlist->filenames, 0,
1890 playlist->max_playlist_size * sizeof(int)); 1890 playlist->max_playlist_size * sizeof(int));
1891 create_thread(playlist_thread, playlist_stack, sizeof(playlist_stack), 1891 create_thread(playlist_thread, playlist_stack, sizeof(playlist_stack),
1892 playlist_thread_name IF_PRIO(, PRIORITY_BACKGROUND) 1892 0, playlist_thread_name IF_PRIO(, PRIORITY_BACKGROUND)
1893 IF_COP(, CPU, false)); 1893 IF_COP(, CPU));
1894 queue_init(&playlist_queue, true); 1894 queue_init(&playlist_queue, true);
1895#endif 1895#endif
1896} 1896}