Skip to content

Commit a5fd0d5

Browse files
tbr-ttcarlescufi
authored andcommitted
samples: tracing: use TEST_EXTRA_STACKSIZE
Take TEST_EXTRA_STACKSIZE into account when sizing the stack for the tracing sample tasks. Signed-off-by: Martin Åberg <[email protected]>
1 parent e696c65 commit a5fd0d5

File tree

1 file changed

+1
-1
lines changed
  • samples/subsys/tracing/src

1 file changed

+1
-1
lines changed

samples/subsys/tracing/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
/* size of stack area used by each thread */
22-
#define STACKSIZE 1024
22+
#define STACKSIZE (1024 + CONFIG_TEST_EXTRA_STACKSIZE)
2323

2424
/* scheduling priority used by each thread */
2525
#define PRIORITY 7

0 commit comments

Comments
 (0)