1
0
Fork 0
forked from len0rd/rockbox

current_tick really does need to be volatile since gcc can optimize away checking the value otherwise - found out the hard way. :)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13715 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2007-06-25 20:46:54 +00:00
parent 2a0f5a4200
commit 6bba70b0ec
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@
#include "panic.h"
#if !defined(CPU_PP) || !defined(BOOTLOADER)
long current_tick NOCACHEDATA_ATTR = 0;
volatile long current_tick NOCACHEDATA_ATTR = 0;
#endif
static void (*tick_funcs[MAX_NUM_TICK_TASKS])(void);