| 168 | //--------------------------------------------------------------------------- |
| 169 | template <class T> |
| 170 | void TUniList<T>::SetBusy(bool b) |
| 171 | { |
| 172 | if( ! bEnableMT ) |
| 173 | return; |
| 174 | if( b ) EnterCriticalSection( &busy ); |
| 175 | else LeaveCriticalSection( &busy ); |
| 176 | } |
| 177 | //--------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected