| 109 | } |
| 110 | |
| 111 | int ZSTD_pthread_cond_destroy(ZSTD_pthread_cond_t* cond) |
| 112 | { |
| 113 | if (!*cond) |
| 114 | return 0; |
| 115 | { |
| 116 | int const ret = pthread_cond_destroy(*cond); |
| 117 | ZSTD_free(*cond); |
| 118 | return ret; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | #endif |
no test coverage detected