You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_z_common_transport_clear() in transport/common/transport.c call z_free() to cleanup tasks but _z_task_free() should be called instead, I think. z_free() only releases memory, while _z_task_free() also close handles and other platform-specific resources, for example it calls vEventGroupDelete(ptr->join_event) in FreeRTOS.
To reproduce
.
System info
.
The text was updated successfully, but these errors were encountered:
Describe the bug
_z_common_transport_clear()
in transport/common/transport.c callz_free()
to cleanup tasks but_z_task_free()
should be called instead, I think.z_free()
only releases memory, while_z_task_free()
also close handles and other platform-specific resources, for example it callsvEventGroupDelete(ptr->join_event)
in FreeRTOS.To reproduce
.
System info
.
The text was updated successfully, but these errors were encountered: