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
The test cases in CrFwSocketTestCase create threads with pthread_create but do not join with them before terminating. This may give rise to memory leaks which are detected by Valgrind.
If I wanted to avoid them, I should:
Make the threads accessible outside the modules where they are created (e.g. OutStreamSocket)
Perform pthread_join in the test cases where the threads are created
The text was updated successfully, but these errors were encountered:
The test cases in
CrFwSocketTestCase
create threads withpthread_create
but do not join with them before terminating. This may give rise to memory leaks which are detected by Valgrind.If I wanted to avoid them, I should:
The text was updated successfully, but these errors were encountered: