forked from len0rd/rockbox
All kernel objects in code shared amongs targets (core, plugins, codecs) should be declared SHAREDBSS_ATTR as any core could potentially touch them even though they seem only to involve threads on one core. The exception is target code for particular CPUs where proper allocation is fixed. playlist.c was a little odd too-- use one mutex for the current playlist and a separate one for created playlists (still pondering the necessity of more than one).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29305 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8f14357064
commit
b15aa47c56
18 changed files with 44 additions and 37 deletions
|
@ -81,15 +81,15 @@ extern bool automatic_skip; /* Who initiated in-progress skip? (C/A-) */
|
|||
*/
|
||||
static bool codec_requested_stop = false;
|
||||
|
||||
extern struct event_queue audio_queue;
|
||||
extern struct event_queue codec_queue;
|
||||
extern struct event_queue audio_queue SHAREDBSS_ATTR;
|
||||
extern struct event_queue codec_queue SHAREDBSS_ATTR;
|
||||
|
||||
extern struct codec_api ci; /* from codecs.c */
|
||||
|
||||
/* Codec thread */
|
||||
unsigned int codec_thread_id; /* For modifying thread priority later.
|
||||
Used by playback.c and pcmbuf.c */
|
||||
static struct queue_sender_list codec_queue_sender_list;
|
||||
static struct queue_sender_list codec_queue_sender_list SHAREDBSS_ATTR;
|
||||
static long codec_stack[(DEFAULT_STACK_SIZE + 0x2000)/sizeof(long)]
|
||||
IBSS_ATTR;
|
||||
static const char codec_thread_name[] = "codec";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue