MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / SetPriority

Method SetPriority

Source/Engine/Platform/Base/ThreadBase.cpp:32–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void ThreadBase::SetPriority(ThreadPriority priority)
33{
34 // Check if value won't change
35 if (_priority != priority)
36 {
37 // Set new value
38 _priority = priority;
39 SetPriorityInternal(priority);
40 }
41}
42
43void ThreadBase::Kill(bool waitForJoin)
44{

Callers

nothing calls this directly

Calls 1

SetPriorityInternalFunction · 0.85

Tested by

no test coverage detected