(&self, base: *mut u8)
| 670 | /// and all allocations made after it must already have been popped. |
| 671 | #[inline(always)] |
| 672 | pub(crate) unsafe fn datastack_pop(&self, base: *mut u8) { |
| 673 | unsafe { (*self.datastack.get()).pop(base) } |
| 674 | } |
| 675 | |
| 676 | /// Temporarily detach the current thread (ATTACHED → DETACHED) while |
| 677 | /// running `f`, then re-attach afterwards. Allows `stop_the_world` to |
no test coverage detected