amaneureka / AtomOS

A multitasking monolithic Kernel based x86 targeting Operating System written in C# from scratch aiming for high-level implementation of drivers in managed environment.
http://www.atomixos.com
BSD 3-Clause "New" or "Revised" License
1.26k stars 85 forks source link

[Compiler] Implement a Garbage Collector #24

Closed amaneureka closed 7 years ago

amaneureka commented 7 years ago

It is really hard to keep track of memory allocation with manual allocation and free mechanism; If a proper garbage collector is not implemented then It could lead to memory leaks.

amaneureka commented 7 years ago

It's done pull request #53