MCPcopy Create free account
hub / github.com/defold/defold / PlatformHasThreadSupport

Function PlatformHasThreadSupport

engine/dlib/src/dlib/thread.h:37–44  ·  view source on GitHub ↗

check for threading support * * @name dmThread::PlatformHasThreadSupport * @return true if platform has support for threads */

Source from the content-addressed store, hash-verified

35 * @return true if platform has support for threads
36 */
37 static inline bool PlatformHasThreadSupport()
38 {
39 #if defined(DM_HAS_THREADS)
40 return true;
41 #else
42 return false;
43 #endif
44 }
45}
46
47#endif // DM_THREAD_H

Callers 3

NullInitializeFunction · 0.85
OpenGLInitializeFunction · 0.85
InitializeVulkanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected