----------------------------------------------------------------------------- Causes the thread to sleep for the specified number of milliseconds. -----------------------------------------------------------------------------
| 104 | // Causes the thread to sleep for the specified number of milliseconds. |
| 105 | //----------------------------------------------------------------------------- |
| 106 | void Thread::Sleep |
| 107 | ( |
| 108 | uint32 _milliseconds |
| 109 | ) |
| 110 | { |
| 111 | return( m_pImpl->Sleep( _milliseconds ) ); |
| 112 | } |
| 113 | |
| 114 | //----------------------------------------------------------------------------- |
| 115 | // <Thread::IsSignalled> |