From: Tridib Bandopadhyay Date: 2011-05-20T08:50:14+09:00 Subject: Re: Manual Memory Management and Automatic Garbage Collection Thank you all for replying What I am trying to achieve is I will allocate some 3 Bytes(for example).. And will free that space by myself and will not bother Garbage Collector to worry for that.I know the Ruby GC is coded in such a way which will be helpful to the users but I want to check how much difference it can cost if it had Manual Memory Deallocation. Secondly, Can I call GC.start() from other file like.. within sqrt() function in Math.c, Can I call it?If so, What is the syntax for calling it? -- Posted via http://www.ruby-forum.com/.