diff options
| author | Franklin Wei <git@fwei.tk> | 2018-01-11 19:44:36 -0500 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2018-01-11 19:45:31 -0500 |
| commit | ccd612345cb8bb6f28fe1258f2d98e90de63967d (patch) | |
| tree | dd892ad21c0418055bfc9a916dabee1e9ebb741c /apps/plugins/sdl/src/thread | |
| parent | 0d794c0c06570decf030fae7e42993bc53c5ab57 (diff) | |
| download | rockbox-ccd612345cb8bb6f28fe1258f2d98e90de63967d.zip rockbox-ccd612345cb8bb6f28fe1258f2d98e90de63967d.tar.gz rockbox-ccd612345cb8bb6f28fe1258f2d98e90de63967d.tar.bz2 rockbox-ccd612345cb8bb6f28fe1258f2d98e90de63967d.tar.xz | |
sdl: fix freeze on startup on PP targets
Using the coprocessor was a good idea in theory, but didn't actually work.
This moves all SDL threads to the main core, which isn't ideal, but at
least works. Additionally, this also adds some good-practice stuff such as
setting the default sample rate on exit.
Change-Id: If1636b33d439000ec7c4e50f46e8d002708d3121
Diffstat (limited to 'apps/plugins/sdl/src/thread')
| -rw-r--r-- | apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c b/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c index 214cbe4..f9dc877 100644 --- a/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c +++ b/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c @@ -58,7 +58,7 @@ int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) thread->handle = rb->create_thread(rbsdl_runthread, stacks[threadnum], DEFAULT_STACK_SIZE, 0, names[threadnum] /* collisions allowed? */ IF_PRIO(, PRIORITY_USER_INTERFACE) - IF_COP(, COP)); + IF_COP(, CPU)); threadnum++; |