So I'm searching for opensource, crossplatform (at least win, lin) library that would do garbage collection on some abstract C++ thread/process... So to say be seprate process for app memory management... or at least would present me with some functions for not used memory deletion looking over my process... Are there any such ones? Can boost help me with that?
My main point is to find such garbage collector that would be capable on operating on top of my normal c++ code/.. I mean no special memory allocation no special use of it in main programm code.... may be just somehow connecting to my process and monitoring it... so I am intrested in such gc which would work on top of the process and cleaning so to say wary old not used memory blocks...
So let me describe problem in a littel bit more detail: I have code that works an generally manages it all by it self. but from time to time it just puts some 2-3 mbs into ram and than never retrn to use tham - I know it does not - I wrote code after all... so thats why I need some on top of my app gc...