luaur_common/methods/
thread_context_event_leave_time_trace.rs1use crate::records::thread_context::ThreadContext;
2
3impl ThreadContext {
4 pub fn event_leave(&mut self) {
5 self.event_leave_u32(crate::functions::get_clock_microseconds::get_clock_microseconds());
6 }
7}