Destructor.
| 267 | |
| 268 | /// Destructor. |
| 269 | ~recursive_mutex() |
| 270 | { |
| 271 | #if defined(_TTHREAD_WIN32_) |
| 272 | DeleteCriticalSection(&mHandle); |
| 273 | #else |
| 274 | pthread_mutex_destroy(&mHandle); |
| 275 | #endif |
| 276 | } |
| 277 | |
| 278 | /// Lock the mutex. |
| 279 | /// The method will block the calling thread until a lock on the mutex can |
nothing calls this directly
no outgoing calls
no test coverage detected