| 104 | static void Free(void* ptr); |
| 105 | #endif |
| 106 | FORCE_INLINE static uint64 GetCurrentThreadID() |
| 107 | { |
| 108 | #ifdef __EMSCRIPTEN_PTHREADS__ |
| 109 | return (uint64)pthread_self(); |
| 110 | #else |
| 111 | return 1; |
| 112 | #endif |
| 113 | } |
| 114 | static String GetSystemName(); |
| 115 | static Version GetSystemVersion(); |
| 116 | static CPUInfo GetCPUInfo(); |
no outgoing calls
no test coverage detected