Update text/0001-agile-coretime.md

Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
Gavin Wood
2023-07-25 11:41:39 +01:00
committed by GitHub
parent 36ee156136
commit 0c3121f6c2
+2 -2
View File
@@ -398,10 +398,10 @@ enum CoreTask {
Assigned { target: ParaId },
InstaPool,
}
// 113-bit (14 bytes). Could be 14 bytes with a specialised 32-bit `CoreTask`.
// 120-bit (15 bytes). Could be 14 bytes with a specialised 32-bit `CoreTask`.
struct ScheduleItem {
mask: CoreMask, // 80 bit
task: CoreTask, // 33 bit
task: CoreTask, // 40 bit
}
/// The work we plan on having each core do at a particular time in the future.