| 762 | #endif |
| 763 | |
| 764 | static inline heap_t* |
| 765 | get_thread_heap_raw(void) { |
| 766 | #if (defined(__APPLE__) || defined(__HAIKU__)) && ENABLE_PRELOAD |
| 767 | return pthread_getspecific(_memory_thread_heap); |
| 768 | #else |
| 769 | return _memory_thread_heap; |
| 770 | #endif |
| 771 | } |
| 772 | |
| 773 | //! Get the current thread heap |
| 774 | static inline heap_t* |
no outgoing calls
no test coverage detected