| 45 | } |
| 46 | |
| 47 | static void PowerTickTask(void *pUserData) |
| 48 | { |
| 49 | if (s_powerTickMode == utils::PowerTick_All) |
| 50 | sceKernelPowerTick(SCE_KERNEL_POWER_TICK_DEFAULT); |
| 51 | else if (s_powerTickMode == utils::PowerTick_Suspend) |
| 52 | sceKernelPowerTick(SCE_KERNEL_POWER_TICK_DISABLE_AUTO_SUSPEND); |
| 53 | } |
| 54 | |
| 55 | uint32_t utils::GetHash(const char *name) |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected