mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #3362 from c1728p9/cortex_a_stack_bump
Increase stack size in malloc test for Cortex-Apull/3415/head
commit
0e2d1cb671
|
@ -7,7 +7,11 @@
|
|||
#endif
|
||||
|
||||
#define NUM_THREADS 5
|
||||
#if defined(__CORTEX_A9)
|
||||
#define THREAD_STACK_SIZE DEFAULT_STACK_SIZE
|
||||
#else
|
||||
#define THREAD_STACK_SIZE 256
|
||||
#endif
|
||||
|
||||
DigitalOut led1(LED1);
|
||||
volatile bool should_exit = false;
|
||||
|
|
Loading…
Reference in New Issue