AtomOS icon indicating copy to clipboard operation
AtomOS copied to clipboard

[ELF] replace Heap with SHM allocate

Open amaneureka opened this issue 8 years ago • 0 comments

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);
...

amaneureka avatar Apr 11 '16 19:04 amaneureka