| 7275 | |
| 7276 | private: |
| 7277 | static void locking_callback(int mode, int type, const char* /*file*/, |
| 7278 | int /*line*/) { |
| 7279 | auto& lk = (*openSSL_locks_)[static_cast<size_t>(type)]; |
| 7280 | if (mode & CRYPTO_LOCK) { |
| 7281 | lk.lock(); |
| 7282 | } |
| 7283 | else { |
| 7284 | lk.unlock(); |
| 7285 | } |
| 7286 | } |
| 7287 | }; |
| 7288 | |
| 7289 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected