Skip to content

Commit

Permalink
isrthread: add configuring the stack of an isrthread as static
Browse files Browse the repository at this point in the history
reason:
we configure the isr thread stack as static to allow for more flexible placement of the stack.

Signed-off-by: hujun5 <[email protected]>
  • Loading branch information
hujun260 committed Nov 7, 2024
1 parent 40a5e47 commit 9e40c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/ostest/wqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9e40c8d

Please sign in to comment.