Hacker News new | ask | show | jobs
by sdegutis 4519 days ago
C is inherently not suitable for a GC. If you want automatic memory management, it's better to use something like Go. I'm not saying this is a bad GC library, just that I'm not sure I would recommend it for general use when writing C code.
1 comments

So to avoid using a conservative GC, you should instead use Go, a language which also has a conservative GC.