Space allocation: general space heaps and free lists
| 2825 | |
| 2826 | // Space allocation: general space heaps and free lists |
| 2827 | forceinline void* |
| 2828 | Space::ralloc(size_t s) { |
| 2829 | return mm.alloc(ssd.data().sm,s); |
| 2830 | } |
| 2831 | forceinline void |
| 2832 | Space::rfree(void* p, size_t s) { |
| 2833 | return mm.reuse(p,s); |
no test coverage detected