| 430 | mTcpConnections.erase(fd); |
| 431 | } |
| 432 | void tryInitThreadID() |
| 433 | { |
| 434 | std::call_once(mOnceInitThreadID, [this]() { |
| 435 | mSelfThreadID = current_thread::tid(); |
| 436 | mSelfThreadIDIsInitialized.store(true); |
| 437 | }); |
| 438 | } |
| 439 | |
| 440 | private: |
| 441 | #ifdef BRYNET_PLATFORM_WINDOWS |
nothing calls this directly
no outgoing calls
no test coverage detected