mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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:
parent
78161a1fe3
commit
071615b059
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user