| 197 | static MallocExtension* current_instance = NULL; |
| 198 | |
| 199 | static void InitModule() { |
| 200 | current_instance = new MallocExtension; |
| 201 | #ifndef NO_HEAP_CHECK |
| 202 | HeapLeakChecker::IgnoreObject(current_instance); |
| 203 | #endif |
| 204 | } |
| 205 | |
| 206 | MallocExtension* MallocExtension::instance() { |
| 207 | perftools_pthread_once(&module_init, InitModule); |
no test coverage detected