From 9e40c8dc4b86ffbd6155d0050b7931acd7884c55 Mon Sep 17 00:00:00 2001 From: hujun5 Date: Sun, 29 Sep 2024 09:10:29 +0800 Subject: [PATCH] isrthread: add configuring the stack of an isrthread as static reason: we configure the isr thread stack as static to allow for more flexible placement of the stack. Signed-off-by: hujun5 --- testing/ostest/wqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/ostest/wqueue.c b/testing/ostest/wqueue.c index f8b68dd13c..76596c3ae8 100644 --- a/testing/ostest/wqueue.c +++ b/testing/ostest/wqueue.c @@ -288,7 +288,7 @@ void wqueue_test(void) for (i = 1; i < 3; i++) { printf("wqueue_test: test %d\n", i); - wq = work_queue_create("test", 100, 2048, i); + wq = work_queue_create("test", 100, NULL, 2048, i); DEBUGASSERT(wq != NULL); wqueue_priority_test(0, wq, 100); work_queue_free(wq);