Merge remote-tracking branch 'origin' into editor

merging into dev
This commit is contained in:
2025-02-27 23:58:01 +00:00
19 changed files with 451 additions and 402 deletions
+7
View File
@@ -38,6 +38,13 @@ extern "C" fn kmain() -> ! {
println!("vec 100000 works");
let mut executor = Executor::new();
let mut v = Vec::with_capacity(1000 * 1000);
for i in 0..1000 * 1000 {
v.push(i);
}
println!("v.len(): {}", v.len());
executor.spawn(Task::new(shell()));
executor.run();
}