mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-05-12 19:53:18 -04:00
Convert users of SHAREDDATA_ATTR to SHAREDBSS_ATTR
The handful of uses are only doing zero initialization so don't need to go in the data section, they can go in bss instead. Change-Id: I7108ac60867aa20b4429ac0747d00109563bb3bf
This commit is contained in:
parent
7b91b81e49
commit
bce2c4e069
4 changed files with 4 additions and 4 deletions
|
|
@ -799,7 +799,7 @@ static inline bool fft_get_fft(void)
|
|||
|
||||
#if NUM_CORES > 1
|
||||
/* use a worker thread if there is another processor core */
|
||||
static volatile bool fft_thread_run SHAREDDATA_ATTR = false;
|
||||
static volatile bool fft_thread_run SHAREDBSS_ATTR;
|
||||
static unsigned long fft_thread = 0;
|
||||
|
||||
static long fft_thread_stack[CACHEALIGN_UP(DEFAULT_STACK_SIZE*4/sizeof(long))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue