| 82 | pthread_mutex_t mutex; |
| 83 | |
| 84 | MVarMapWithLock() { |
| 85 | if (init(256) != 0) { |
| 86 | LOG(WARNING) << "Fail to init"; |
| 87 | } |
| 88 | pthread_mutex_init(&mutex, NULL); |
| 89 | } |
| 90 | }; |
| 91 | |
| 92 | // We have to initialize global map on need because bvar is possibly used |
nothing calls this directly
no test coverage detected