AtomOS
AtomOS copied to clipboard
[ELF] replace Heap with SHM allocate
ELF is allocating memory through Kernel Memory Manager but it should do that with SHM allocate.
//File: Atomix.Kernel_H.exec.ELF.cs
...
var Mem = Heap.kmalloc(section->sh_size);
...
var des = Heap.kmalloc(section->sh_size);
...