mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Dual core support for PP502x players (iPod G4 and later, iriver h10, Sansa - iPod G3 will be coming soon.) This allows threads to be run on either core provided that all communications between the cores is done using uncached memory. There should be no significant change in battery life from doing this. Documentation (on the RockboxKernel wiki page) will follow shortly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12601 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
74e572c9d6
commit
82f9056988
38 changed files with 379 additions and 211 deletions
|
@ -1171,7 +1171,8 @@ int main(void* parameter)
|
|||
rb->memset(&gTread, 0, sizeof(gTread));
|
||||
gTread.foreground = true;
|
||||
rb->create_thread(thread, stack, stacksize, "CDC"
|
||||
IF_PRIO(, PRIORITY_BACKGROUND));
|
||||
IF_PRIO(, PRIORITY_BACKGROUND)
|
||||
IF_COP(, CPU, false));
|
||||
|
||||
#ifdef DEBUG
|
||||
do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue