trace: add taskSpawned and taskRemoved
This commit is contained in:
@@ -23,6 +23,19 @@ pub const Trace = struct {
|
||||
_ = self;
|
||||
}
|
||||
|
||||
pub fn taskSpawned(self: *Trace, task_id: TaskID, node: *Node, parent_id: ?TaskID) void {
|
||||
_ = self;
|
||||
_ = task_id;
|
||||
_ = node;
|
||||
_ = parent_id;
|
||||
}
|
||||
|
||||
pub fn taskRemoved(self: *Trace, task_id: TaskID, node: *Node) void {
|
||||
_ = self;
|
||||
_ = task_id;
|
||||
_ = node;
|
||||
}
|
||||
|
||||
pub fn beginIO(self: *Trace, disk: bool, source: std.builtin.SourceLocation) PendingTrace {
|
||||
_ = self;
|
||||
_ = disk;
|
||||
|
||||
Reference in New Issue
Block a user