summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-07-06 02:21:25 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-07-06 02:21:25 +0000
commit185fddbd66a1d494842c19c63ffdd919157a15e4 (patch)
tree5562f7ca437581e3998df0d6bbb6efe9758b39c5 /apps
parent9cc0dab3ced1f0c9205f6cba4933096eca915157 (diff)
downloadrockbox-185fddbd66a1d494842c19c63ffdd919157a15e4.tar.gz
rockbox-185fddbd66a1d494842c19c63ffdd919157a15e4.zip
Fix FS#12179 - Simulator build fails when using "configure --sdl-threads". HAVE_PRIORITY_SCHEDULING checks were missing to exclude priority calls when building without priority.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30124 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/pcmbuf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c
index 5ef517968a..ca17437534 100644
--- a/apps/pcmbuf.c
+++ b/apps/pcmbuf.c
@@ -1119,7 +1119,9 @@ void pcmbuf_fade(bool fade, bool in)
1119 if (fade) 1119 if (fade)
1120 { 1120 {
1121 /* Do this on thread for now */ 1121 /* Do this on thread for now */
1122#ifdef HAVE_PRIORITY_SCHEDULING
1122 int old_prio = thread_set_priority(thread_self(), PRIORITY_REALTIME); 1123 int old_prio = thread_set_priority(thread_self(), PRIORITY_REALTIME);
1124#endif
1123 1125
1124 while (1) 1126 while (1)
1125 { 1127 {
@@ -1140,7 +1142,9 @@ void pcmbuf_fade(bool fade, bool in)
1140 break; 1142 break;
1141 } 1143 }
1142 1144
1145#ifdef HAVE_PRIORITY_SCHEDULING
1143 thread_set_priority(thread_self(), old_prio); 1146 thread_set_priority(thread_self(), old_prio);
1147#endif
1144 } 1148 }
1145} 1149}
1146 1150