| 608 | |
| 609 | #ifdef ARROW_JEMALLOC |
| 610 | MemoryPool* jemalloc_memory_pool() { |
| 611 | if (IsDebugEnabled()) { |
| 612 | return &jemalloc_debug_pool_; |
| 613 | } else { |
| 614 | return &jemalloc_pool_; |
| 615 | } |
| 616 | } |
| 617 | #endif |
| 618 | |
| 619 | #ifdef ARROW_MIMALLOC |
no test coverage detected