MCPcopy Create free account
hub / github.com/crownengine/crown / entry

Method entry

3rdparty/bx/src/thread.cpp:304–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302 }
303
304 int32_t Thread::entry()
305 {
306#if BX_PLATFORM_WINDOWS
307 ThreadInternal* ti = (ThreadInternal*)m_internal;
308 ti->m_threadId = ::GetCurrentThreadId();
309#endif // BX_PLATFORM_WINDOWS
310
311 m_sem.post();
312 setThreadName(m_name);
313 int32_t result = m_fn(this, m_userData);
314 return result;
315 }
316
317 struct TlsDataInternal
318 {

Callers 15

SetupMethod · 0.80
SimplifyFunctionMethod · 0.80
IsReachableMethod · 0.80
ProcessMethod · 0.80
ProcessFunctionMethod · 0.80
ProcessFunctionMethod · 0.80
CreateSuccessorMapMethod · 0.80
InitializeWorklistMethod · 0.80
InitializeMethod · 0.80

Calls 1

postMethod · 0.45

Tested by

no test coverage detected