mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Fix connection abort.
This commit is contained in:
parent
8050622b0f
commit
6f0dc2885f
@ -2326,7 +2326,7 @@ void Worker::Exec()
|
||||
|
||||
for(;;)
|
||||
{
|
||||
if( m_shutdown.load( std::memory_order_relaxed ) ) return;
|
||||
if( m_shutdown.load( std::memory_order_relaxed ) ) { m_netWriteCv.notify_one(); return; };
|
||||
if( m_sock.Connect( m_addr.c_str(), m_port ) ) break;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user