tangled
alpha
login
or
join now
jonaskruckenberg.de
/
k23
0
fork
atom
Next Generation WASM Microkernel Operating System
0
fork
atom
overview
issues
pulls
3
pipelines
fix basic address space tests
Jonas Kruckenberg
2 months ago
1224ea90
3a64e206
+3
-4
1 changed file
expand all
collapse all
unified
split
libs
kmem
src
address_space.rs
+3
-4
libs/kmem/src/address_space.rs
···
444
444
frame_allocator,
445
445
..
446
446
} = MachineBuilder::<A, parking_lot::RawMutex, _>::new()
447
447
-
.with_memory_regions([0x6000])
447
447
+
.with_memory_regions([0xA000])
448
448
.finish_and_bootstrap()
449
449
.unwrap();
450
450
···
484
484
frame_allocator,
485
485
..
486
486
} = MachineBuilder::<A, parking_lot::RawMutex, _>::new()
487
487
-
.with_memory_regions([0x7000])
487
487
+
.with_memory_regions([0xB000])
488
488
.finish_and_bootstrap()
489
489
.unwrap();
490
490
···
547
547
frame_allocator,
548
548
..
549
549
} = MachineBuilder::<A, parking_lot::RawMutex, _>::new()
550
550
-
.with_memory_regions([0x7000])
550
550
+
.with_memory_regions([0xB000])
551
551
.finish_and_bootstrap()
552
552
.unwrap();
553
553
···
603
603
assert_eq!(attrs.allows_execution(), true);
604
604
assert_eq!(lvl.page_size(), 4096);
605
605
}
606
606
-
607
606
}
608
607
}