[RFC]: Linkage Error fix.

Denis Lila dlila at redhat.com
Mon Apr 18 07:21:54 PDT 2011


> I think you are getting way past what this problem actually needs.
> Ask yourself: will anyone ever notice the difference caused by making
> this class loader concurrent? is it possible actually to measure the
> performance difference from simply making the method synchronized? If
> the answer to both these questions is "no", you know what to do...

Hm... yeah, you're right. The new patch is attached.

Thank you,
Denis.

----- Original Message -----
> On 04/18/2011 02:47 PM, Denis Lila wrote:
> > I guess I should have read this before I responded to Deepak.
> >
> >> This is exactly how ClassLoader does it in 1.7. However,
> >> ClassLoader's code is a bit more clear:
> >>
> >> protected Class<?> loadClass(String name, boolean resolve)
> >> throws ClassNotFoundException
> >> {
> >> synchronized (getClassLoadingLock(name)) {
> >>
> >> where
> >>
> >> protected Object getClassLoadingLock(String className) {
> >> Object lock = this;
> >> if (parallelLockMap != null) {
> >> Object newLock = new Object();
> >> lock = parallelLockMap.putIfAbsent(className, newLock);
> >> if (lock == null) {
> >> lock = newLock;
> >> }
> >> }
> >> return lock;
> >> }
> 
> Eww, nasty mailer broke indentation. :-(
> 
> > Interesting. That's almost exactly the same as my solution
> > (although, I don't know if it's clearer ;-).
> >
> > In my e-mail with the patch I expressed some concern over
> > the CHM getting too large after a while, and as a fix I
> > proposed having one lock per class_name.hashCode() %
> > small_prime_number
> > instead of one lock for every class name. What do you
> > think about this?
> 

> 
> Andrew.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: linkageError.patch
Type: text/x-patch
Size: 2352 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110418/aac035f8/linkageError.patch 


More information about the distro-pkg-dev mailing list