summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-05-04 17:12:37 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-05-04 17:12:37 +0000
commitcc486c9032a6953e4c66c1a3437b7c7b124fd442 (patch)
tree1ed0462b00bc3390c7a6e79202a69425d80f019b /firmware
parent6cbed80f197aa47125eba24a6befcbf3368365fe (diff)
downloadrockbox-cc486c9032a6953e4c66c1a3437b7c7b124fd442.tar.gz
rockbox-cc486c9032a6953e4c66c1a3437b7c7b124fd442.zip
The presence of the run list corelocks are dependent on core number and not building with priority scheduling. Fix building for multiprocessor without HAVE_PRIORITY_SCHEDULING defined.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17362 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/thread.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h
index eea58975a1..982b43731a 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -324,9 +324,7 @@ struct core_entry
324#if NUM_CORES > 1 324#if NUM_CORES > 1
325 struct thread_blk_ops blk_ops; /* operations to perform when 325 struct thread_blk_ops blk_ops; /* operations to perform when
326 blocking a thread */ 326 blocking a thread */
327#ifdef HAVE_PRIORITY_SCHEDULING
328 struct corelock rtr_cl; /* Lock for rtr list */ 327 struct corelock rtr_cl; /* Lock for rtr list */
329#endif
330#endif /* NUM_CORES */ 328#endif /* NUM_CORES */
331}; 329};
332 330