RE: [cp-patches] RFC: RMI Class loading patch

2006-08-20 Thread Jeroen Frijters
Mark Wielaard wrote: > Could you add a little note about this to the NEWS and/or the > vmintegration guide? VMStackWalker.firstNonNullClassLoader() is a new > method that runtimes should implement (an optimized version of). Ah, yes, thanks for reminding me. Regards, Jeroen 2006-08-21 Jeroen Fri

Re: [cp-patches] RFC: RMI Class loading patch

2006-08-20 Thread Mark Wielaard
Hi Jeroen, On Sun, 2006-08-13 at 13:38 +0200, Jeroen Frijters wrote: > Note that I removed VMObjectInputStream.currentClassLoader() and added > VMStackWalker.firstNonNullClassLoader(). They are not identical, because > VMObjectInputStream.currentClassLoader() used to return the thread > context cl

[cp-patches] RFC: RMI Class loading patch

2006-08-13 Thread Jeroen Frijters
Hi, I did some RMI debugging and I found that we're using the wrong class loader in a couple of cases. The attached patch cleans up the code a little and uses the caller's class loader instead of the thread's context class loader in a couple of places. I would appreciate it if someone with more R