Records one new scheduler event.
(&self, event: MorselEvent)
| 177 | |
| 178 | /// Records one new scheduler event. |
| 179 | pub(crate) fn push(&self, event: MorselEvent) { |
| 180 | self.events.lock().unwrap().push(event); |
| 181 | } |
| 182 | |
| 183 | /// Formats all recorded events into a stable, snapshot-friendly trace. |
| 184 | pub(crate) fn format_events(&self) -> String { |
no outgoing calls
no test coverage detected