summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-11-19 12:56:33 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-11-19 12:56:33 +0100
commita2a8b17698a027ca893303dab418ed1063d2c8f7 (patch)
tree60fd75e38444c392b299b7010c8c3085e811dc52
parent3ef1c530280594e74958a7a915e199332d0a814c (diff)
sparc: Increase stack size for RTEMS_COVERAGE
-rw-r--r--cpukit/score/cpu/sparc/include/rtems/score/cpu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpukit/score/cpu/sparc/include/rtems/score/cpu.h b/cpukit/score/cpu/sparc/include/rtems/score/cpu.h
index af15f35b62..45c1d735b9 100644
--- a/cpukit/score/cpu/sparc/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/sparc/include/rtems/score/cpu.h
@@ -705,7 +705,11 @@ extern const CPU_Trap_table_entry _CPU_Trap_slot_template;
* represents a call depth of about 20 routines based on the minimum
* stack frame.
*/
+#if defined(RTEMS_COVERAGE)
+#define CPU_STACK_MINIMUM_SIZE (16384)
+#else
#define CPU_STACK_MINIMUM_SIZE (1024*4)
+#endif
/**
* What is the size of a pointer on this architecture?