MCPcopy Create free account
hub / github.com/RPCSX/rpcsx / get_name

Method get_name

rpcs3/util/Thread.h:216–224  ·  view source on GitHub ↗

Get current thread name

Source from the content-addressed store, hash-verified

214public:
215 // Get current thread name
216 static std::string get_name()
217 {
218 if (!g_tls_this_thread)
219 {
220 return "not named_thread";
221 }
222
223 return *g_tls_this_thread->m_tname.load();
224 }
225
226 // Get thread name
227 template <typename T>

Callers 6

handle_access_violationFunction · 0.45
_baseMethod · 0.45
encodeMethod · 0.45
decodeMethod · 0.45
to_jsonMethod · 0.45
from_jsonMethod · 0.45

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected