Get the top address of the user heap.
(&self)
| 261 | |
| 262 | /// Get the top address of the user heap. |
| 263 | pub fn get_heap_top(&self) -> usize { |
| 264 | self.heap_top.load(Ordering::Acquire) |
| 265 | } |
| 266 | |
| 267 | /// Set the top address of the user heap. |
| 268 | pub fn set_heap_top(&self, top: usize) { |