Check if the thread is accessing user memory.
(&self)
| 146 | |
| 147 | /// Check if the thread is accessing user memory. |
| 148 | pub fn is_accessing_user_memory(&self) -> bool { |
| 149 | self.accessing_user_memory.load(Ordering::Acquire) |
| 150 | } |
| 151 | |
| 152 | /// Set the accessing user memory flag. |
| 153 | pub fn set_accessing_user_memory(&self, accessing: bool) { |
no test coverage detected