[RFC][plugin]: fix concurrency problems in PAV.java

Dr Andrew John Hughes ahughes at redhat.com
Tue Apr 12 12:29:04 PDT 2011


On 12:49 Tue 12 Apr     , Andrew Su wrote:
> 
> 
> ----- Original Message -----
> > Hi.
> > 
> > I found a few problems in PluginAppletViewer.java.
> > We were modifying/reading from two static hash maps
> > concurrently. The hash maps were "applets" and "status".
> > status was only modified in a synchronized method,
> > but we were reading from it outside of that method and
> > that's unsafe.
> > 
> > As far as I can tell, there are no group of operations
> > that need to happen atomically, so using ConcurrentHashMaps
> > should be enough.
> > 
> > I've also done a bit of refactoring (removing dead code,
> > adding some SuppressWarnings annotations, making members
> > private, etc).
> > 
> > Any criticism is appreciated.
> > 
> 
> Hi Denis,
> 
> I think the clean-up should go in its own patch.
> 
> Seems like an extra space @
> 
> @@ -1645,7 +1587,8 @@
>  
>          new Thread(new Runnable()
>           {
> -             public void run()
> +             @SuppressWarnings("deprecation")
> +            public void run()
>               {
>                   ClassLoader cl = p.applet.getClass().getClassLoader();
> 
> Cheers,
>   Andrew
> 

+1
Please repost the concurrency concerns separate from the cleanup.
-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and IcedTea
http://www.gnu.org/software/classpath
http://icedtea.classpath.org
PGP Key: F5862A37 (https://keys.indymedia.org/)
Fingerprint = EA30 D855 D50F 90CD F54D  0698 0713 C3ED F586 2A37



More information about the distro-pkg-dev mailing list