we're creating a deadlock here - all threads are trying to send but no one's receiving. this can be resolved either by having half of the threads sending messages and the other half receiving or by using non-blocking async send/recv
Please log in to leave a comment.
we're creating a deadlock here - all threads are trying to send but no one's receiving. this can be resolved either by having half of the threads sending messages and the other half receiving or by using non-blocking async send/recv