forked from espressif/esp-idf
freertos: fix TLS delete callback test
“Full” printf uses more stack space than “nano” printf, and more space than available in the idle task. This caused stack overflow in TLS delete test. Replacing printf with ets_printf.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
|
||||
static void tskdelcb(int no, void *arg)
|
||||
{
|
||||
printf("Delete callback: %d = %p!\n", no, arg);
|
||||
ets_printf("Delete callback: %d = %p!\n", no, arg);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user