Skip to content

Commit 3223303

Browse files
keith-packardnashif
authored andcommitted
samples/zbus: Increase dyn_channel stack sizes
Sparc needs more than 1k for these stacks. Signed-off-by: Keith Packard <keithp@keithp.com>
1 parent 82d7ea1 commit 3223303

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/subsys/zbus/dyn_channel/src/consumer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ static void consumer_thread(void)
4141
}
4242
}
4343

44-
K_THREAD_DEFINE(consumer_thread_id, 1024, consumer_thread, NULL, NULL, NULL, 4, 0, 1000);
44+
K_THREAD_DEFINE(consumer_thread_id, 2048, consumer_thread, NULL, NULL, NULL, 4, 0, 1000);

samples/subsys/zbus/dyn_channel/src/producer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ static void producer_thread(void)
3737
}
3838
}
3939

40-
K_THREAD_DEFINE(producer_thread_id, 1024, producer_thread, NULL, NULL, NULL, 5, 0, 1000);
40+
K_THREAD_DEFINE(producer_thread_id, 2048, producer_thread, NULL, NULL, NULL, 5, 0, 1000);

0 commit comments

Comments
 (0)