| 335 | |
| 336 | #ifdef CPPUTEST_HAVE_PTHREAD_MUTEX_LOCK |
| 337 | static void PThreadMutexDestroy(PlatformSpecificMutex mtx) |
| 338 | { |
| 339 | pthread_mutex_t *mutex = (pthread_mutex_t *)mtx; |
| 340 | pthread_mutex_destroy(mutex); |
| 341 | delete mutex; |
| 342 | } |
| 343 | #else |
| 344 | static void PThreadMutexDestroy(PlatformSpecificMutex) |
| 345 | { |
nothing calls this directly
no outgoing calls
no test coverage detected