diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-05-04 17:12:37 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-05-04 17:12:37 +0000 |
| commit | cc486c9032a6953e4c66c1a3437b7c7b124fd442 (patch) | |
| tree | 1ed0462b00bc3390c7a6e79202a69425d80f019b | |
| parent | 6cbed80f197aa47125eba24a6befcbf3368365fe (diff) | |
| download | rockbox-cc486c9032a6953e4c66c1a3437b7c7b124fd442.zip rockbox-cc486c9032a6953e4c66c1a3437b7c7b124fd442.tar.gz rockbox-cc486c9032a6953e4c66c1a3437b7c7b124fd442.tar.bz2 rockbox-cc486c9032a6953e4c66c1a3437b7c7b124fd442.tar.xz | |
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
| -rw-r--r-- | firmware/export/thread.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h index eea5897..982b437 100644 --- a/firmware/export/thread.h +++ b/firmware/export/thread.h @@ -324,9 +324,7 @@ struct core_entry #if NUM_CORES > 1 struct thread_blk_ops blk_ops; /* operations to perform when blocking a thread */ -#ifdef HAVE_PRIORITY_SCHEDULING struct corelock rtr_cl; /* Lock for rtr list */ -#endif #endif /* NUM_CORES */ }; |