| 129 | } |
| 130 | |
| 131 | void Util::SetCurrentThreadName(const char* name) { |
| 132 | SetCurrentThreadDebugName(name); |
| 133 | THREAD_ID id(CurrentThreadId()); |
| 134 | lock_guard<recursive_mutex> lock(_MutexThreadNames); |
| 135 | _ThreadNames[id].assign(name); |
| 136 | } |
| 137 | |
| 138 | UInt8 Util::Get7BitValueSize(UInt64 value) { |
| 139 | UInt64 limit = 0x80; |
nothing calls this directly
no test coverage detected