Skip to content

Commit 39908cc

Browse files
hujun260xiaoxiang781216
authored andcommitted
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 <[email protected]>
1 parent 87ce33b commit 39908cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/ostest/wqueue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ void wqueue_test(void)
288288
for (i = 1; i < 3; i++)
289289
{
290290
printf("wqueue_test: test %d\n", i);
291-
wq = work_queue_create("test", 100, 2048, i);
291+
wq = work_queue_create("test", 100, NULL, 2048, i);
292292
DEBUGASSERT(wq != NULL);
293293
wqueue_priority_test(0, wq, 100);
294294
work_queue_free(wq);

0 commit comments

Comments
 (0)