(&self, size: usize)
| 660 | /// Check whether the thread data stack currently has room for `size` bytes. |
| 661 | #[inline(always)] |
| 662 | pub(crate) fn datastack_has_space(&self, size: usize) -> bool { |
| 663 | unsafe { (*self.datastack.get()).has_space(size) } |
| 664 | } |
| 665 | |
| 666 | /// Pop a previous data stack allocation. |
| 667 | /// |
no test coverage detected