Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use SGen garbage collector (from the mono runtime) in coventionnal C/C++ programs ? I think mono used also the Boehm-Demers-Weiser conservative garbage collector that can be used in C/C++ programs.

share|improve this question
Why would you want to commit such an unnatural act? – Gene Bushuyev Dec 29 '10 at 15:35
I don't think that this is possible. From the looks of it, SGen seems to be a GC which is specifically designed to work with the Mono-Structure/Runtime. – Bobby Dec 29 '10 at 15:39

2 Answers

up vote 5 down vote accepted

There are very few dependencies on the rest of the Mono code in SGen, so it should be easy to extract it out and adapt to other uses. The major difference from the Boehm collector is that it currently doesn't support a non-precise mode for heap objects, so you can't use it to replace malloc easily. It would work great, though, for managing objects for which you could provide precise reference information.

share|improve this answer

Not sure about the garbage collector that you have specified. But do you really need to use a GC on a C++ project? I never felt the use of a GC in my C++ projects. You should be good if you follow the best practices and use a decent smart pointer.

share|improve this answer
No, I don't realy need a GC. But am curious ! – Ghassen Hamrouni Dec 30 '10 at 8:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.