From 10502e34a10fb3b672aef1161cc271003c7806ba Mon Sep 17 00:00:00 2001 From: Abhishek Koneru Date: Wed, 27 Jun 2012 14:27:55 -0400 Subject: Fixes for Guarded_By_Violation issues shown in Coverity --- base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/common/src/com/netscape/cmscore/util') diff --git a/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java b/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java index 5822542a3..40499577e 100644 --- a/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java +++ b/base/common/src/com/netscape/cmscore/util/ProfileSubsystem.java @@ -144,7 +144,7 @@ public class ProfileSubsystem extends Frame implements ISubsystem, Runnable { return null; } - public void updateGeneralPanel() { + public synchronized void updateGeneralPanel() { Runtime.getRuntime().gc(); String text = "JDK VM Information " + "\n" + @@ -161,7 +161,7 @@ public class ProfileSubsystem extends Frame implements ISubsystem, Runnable { mTextArea.setText(text); } - public void updateThreadPanel() { + public synchronized void updateThreadPanel() { Thread currentThread = Thread.currentThread(); Vector> data = new Vector>(); Thread threads[] = new Thread[100]; -- cgit