| 613 | |
| 614 | #ifdef ARROW_JEMALLOC |
| 615 | MemoryPool* jemalloc_memory_pool() { |
| 616 | if (IsDebugEnabled()) { |
| 617 | return &jemalloc_debug_pool_; |
| 618 | } else { |
| 619 | return &jemalloc_pool_; |
| 620 | } |
| 621 | } |
| 622 | #endif |
| 623 | |
| 624 | #ifdef ARROW_MIMALLOC |
no test coverage detected