| 228 | } |
| 229 | |
| 230 | void LoadApplicationsMain(void*) { |
| 231 | SetThreadName("cnt.LoadApplicationsThread"); |
| 232 | |
| 233 | GLEAF_LOG_FMT("Scanning applications..."); |
| 234 | ScanApplications(); |
| 235 | |
| 236 | GLEAF_LOG_FMT("Done! Exiting thread..."); |
| 237 | g_LoadApplicationsThreadDone = true; |
| 238 | } |
| 239 | |
| 240 | void RequestLoadApplications() { |
| 241 | if(!g_LoadApplicationsThreadDone) { |
nothing calls this directly
no test coverage detected