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:
Ivan Grokhotkov 2016-12-09 19:44:27 +08:00
parent 78161a1fe3
commit 071615b059

View File

@ -16,7 +16,7 @@
static void tskdelcb(int no, void *arg) static void tskdelcb(int no, void *arg)
{ {
printf("Delete callback: %d = %p!\n", no, arg); ets_printf("Delete callback: %d = %p!\n", no, arg);
} }