mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
misc: Ensure stacks are always aligned with the native pointer size.
Change-Id: Ie7efae914dcb43be98bbb71bae9b765b2d87d817
This commit is contained in:
parent
695698b918
commit
16c9ef64b0
8 changed files with 9 additions and 9 deletions
|
|
@ -68,7 +68,7 @@ static int samples_taken;
|
|||
static clock_t initial_time, hz;
|
||||
|
||||
|
||||
static char cputime_thread_stack[DEFAULT_STACK_SIZE + 0x100];
|
||||
static long cputime_thread_stack[(DEFAULT_STACK_SIZE + 0x100)/sizeof(long)];
|
||||
static char cputime_thread_name[] = "cputime";
|
||||
static int cputime_threadid;
|
||||
static void cputime_thread(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue