check for threading support * * @name dmThread::PlatformHasThreadSupport * @return true if platform has support for threads */
| 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 |
no outgoing calls
no test coverage detected