We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I use printf in a thread. like the following code:
void task1(void) { while(1) printf("hello!\n"); }
void task2(void) { while(1); }
Finally, the program run in to OS_ERR_STK_OVF.
Interesting observation. Can't say this is entirely unexpected, though.