Commit 27318b27 authored by Keith Packard's avatar Keith Packard Committed by Henrik Brix Andersen
Browse files

samples/zbus: Increase dyn_channel stack sizes



Sparc needs more than 1k for these stacks.

Signed-off-by: default avatarKeith Packard <keithp@keithp.com>
parent 97f96afb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,4 +41,4 @@ static void consumer_thread(void)
	}
}

K_THREAD_DEFINE(consumer_thread_id, 1024, consumer_thread, NULL, NULL, NULL, 4, 0, 1000);
K_THREAD_DEFINE(consumer_thread_id, 2048, consumer_thread, NULL, NULL, NULL, 4, 0, 1000);
+1 −1
Original line number Diff line number Diff line
@@ -37,4 +37,4 @@ static void producer_thread(void)
	}
}

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