| 66 | } |
| 67 | |
| 68 | void utils::SetPowerTickTask(PowerTick mode) |
| 69 | { |
| 70 | common::MainThreadCallList::Unregister(PowerTickTask, NULL); |
| 71 | if (mode == PowerTick_None) |
| 72 | return; |
| 73 | |
| 74 | s_powerTickMode = mode; |
| 75 | common::MainThreadCallList::Register(PowerTickTask, NULL); |
| 76 | } |
| 77 | |
| 78 | void utils::Lock(uint32_t flag) |
| 79 | { |
nothing calls this directly
no outgoing calls
no test coverage detected