(&self)
| 438 | |
| 439 | #[inline] |
| 440 | pub(crate) fn notify_thread_gone(&self) { |
| 441 | let _guard = self.notify_mutex.lock().unwrap(); |
| 442 | self.decrement_thread_countdown(1); |
| 443 | self.notify_cv.notify_one(); |
| 444 | } |
| 445 | |
| 446 | pub fn stats_snapshot(&self) -> StopTheWorldStats { |
| 447 | StopTheWorldStats { |
no test coverage detected