mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
remove unnecessary print in sys_arch.c
This commit is contained in:
parent
23cc3c0f90
commit
c144feb2dd
@ -508,13 +508,11 @@ static void sys_thread_tls_free(int index, void* data)
|
||||
|
||||
if (sem && *sem){
|
||||
LWIP_DEBUGF(THREAD_SAFE_DEBUG, ("sem del, i=%d sem=%p\n", index, *sem));
|
||||
ets_printf("sem del:%p\n", *sem);
|
||||
vSemaphoreDelete(*sem);
|
||||
}
|
||||
|
||||
if (sem){
|
||||
LWIP_DEBUGF(THREAD_SAFE_DEBUG, ("sem pointer del, i=%d sem_p=%p\n", index, sem));
|
||||
ets_printf("sem pointer del:%p\n", sem);
|
||||
free(sem);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user