| 41 | #ifdef ARROW_JEMALLOC |
| 42 | struct JemallocMemoryPoolFactory { |
| 43 | static MemoryPool* memory_pool() { |
| 44 | MemoryPool* pool; |
| 45 | ABORT_NOT_OK(jemalloc_memory_pool(&pool)); |
| 46 | return pool; |
| 47 | } |
| 48 | }; |
| 49 | #endif |
| 50 |
nothing calls this directly
no test coverage detected