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
I have 2 servers and 2 clients running on the same binary.
Even without any communication between them, client 1 dials to server 1, and client 2 dials to server 2.
NNG sockets are closed for the clients, followed by NNG sockets being closed for the servers.
If I loop through the execution of the process over and over, e.g.
while ./process ;do:;done
Eventually, in a minute or so, I get:
panic: pthread_mutex_lock: Invalid argument
This message is indicative of a BUG.
Report this at https://github.com/nanomsg/nng/issues
free(): corrupted unsorted chunks
If I don't close the sockets on the server side and leave for the process to clean-up during its teardown, the problem doesn't happen.
The same issue happens if the server stops listening for clients by using nng_listener_close whilst keeping the sockets open.
I'm using clang-14, built under Ubuntu 22.04 using nng v1.10.1.
I have 2 servers and 2 clients running on the same binary.
Even without any communication between them, client 1 dials to server 1, and client 2 dials to server 2.
NNG sockets are closed for the clients, followed by NNG sockets being closed for the servers.
If I loop through the execution of the process over and over, e.g.
Eventually, in a minute or so, I get:
panic: pthread_mutex_lock: Invalid argument This message is indicative of a BUG. Report this at https://github.com/nanomsg/nng/issues free(): corrupted unsorted chunks
If I don't close the sockets on the server side and leave for the process to clean-up during its teardown, the problem doesn't happen.
The same issue happens if the server stops listening for clients by using
nng_listener_close
whilst keeping the sockets open.I'm using clang-14, built under Ubuntu 22.04 using nng v1.10.1.
The call stack (when building with
-g -O0
)The text was updated successfully, but these errors were encountered: