File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -488,16 +488,16 @@ pub const Page = struct {
488488 }
489489
490490 {
491- std .debug .print ("\n primary schedule: {d}\n " , .{self .scheduler .primary .count ()});
492- var it = self .scheduler .primary .iterator ();
491+ std .debug .print ("\n high_priority schedule: {d}\n " , .{self .scheduler .high_priority .count ()});
492+ var it = self .scheduler .high_priority .iterator ();
493493 while (it .next ()) | task | {
494494 std .debug .print (" - {s} schedule: {d}ms\n " , .{ task .name , task .ms - now });
495495 }
496496 }
497497
498498 {
499- std .debug .print ("\n secondary schedule: {d}\n " , .{self .scheduler .secondary .count ()});
500- var it = self .scheduler .secondary .iterator ();
499+ std .debug .print ("\n low_priority schedule: {d}\n " , .{self .scheduler .low_priority .count ()});
500+ var it = self .scheduler .low_priority .iterator ();
501501 while (it .next ()) | task | {
502502 std .debug .print (" - {s} schedule: {d}ms\n " , .{ task .name , task .ms - now });
503503 }
You can’t perform that action at this time.
0 commit comments