Re: Linkage error on recent JDKs

2012-02-26 Thread Charles Oliver Nutter
On Sun, Feb 26, 2012 at 7:10 PM, Mark Roos wrote: > I was wondering about the need to make the classes GCable.  My first > approach used annoClasses > from sun.misc.unsafe but that turned out to have limited support so I went > to a 'normal' class > generation ( again like you one class per method

Re: Linkage error on recent JDKs

2012-02-26 Thread Mark Roos
Charles you mentioned That's one class per jitted Ruby method, and to make them GCable that's one classloader per class. So if we eventually JIT 1000 Ruby methods, you have 1000 classes and 1000 classloaders. I was wondering about the need to make the classes GCable. My first approach used an