* Sleep on the current thread for a defined time. * @param milliseconds Time to sleep for in milliseconds. */
| 22 | * @param milliseconds Time to sleep for in milliseconds. |
| 23 | */ |
| 24 | inline void CSleep(int milliseconds) |
| 25 | { |
| 26 | std::this_thread::sleep_for(std::chrono::milliseconds(milliseconds)); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Name the thread this function is called on for the debugger. |
no outgoing calls
no test coverage detected