trace: add timeAdvanced

This commit is contained in:
2026-06-08 10:40:56 +02:00
parent d7f9eb2a51
commit 7c642e384e
+6
View File
@@ -36,6 +36,12 @@ pub const Trace = struct {
_ = node; _ = node;
} }
pub fn timeAdvanced(self: *Trace, from: u64, to: u64) void {
_ = self;
_ = from;
_ = to;
}
pub fn beginIO(self: *Trace, disk: bool, source: std.builtin.SourceLocation) PendingTrace { pub fn beginIO(self: *Trace, disk: bool, source: std.builtin.SourceLocation) PendingTrace {
_ = self; _ = self;
_ = disk; _ = disk;