samples: philosophers: Introduce CONFIG_TEST_EXTRA_STACKSIZE
Some architectures require more space on the stack when running samples and tests. Use the CONFIG_TEST_EXTRA_STACKSIZE also on the philosophers sample to deal with such cases. Signed-off-by: Carlo Caione <ccaione@baylibre.com>
This commit is contained in:
parent
3a00d0ca75
commit
6d9af83907
|
@ -83,7 +83,7 @@
|
|||
/* end - control behaviour of the demo */
|
||||
/***************************************/
|
||||
|
||||
#define STACK_SIZE 768
|
||||
#define STACK_SIZE (768 + CONFIG_TEST_EXTRA_STACKSIZE)
|
||||
|
||||
#include "phil_obj_abstract.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue