changeset in /hg/icedtea6: 2009-06-25 Gary Benson <gbenson at red...

Gary Benson gbenson at redhat.com
Thu Jun 25 03:38:58 PDT 2009


changeset 1541cc6b4e0d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=1541cc6b4e0d
description:
	2009-06-25  Gary Benson  <gbenson at redhat.com>

		* ports/hotspot/src/share/vm/shark/sharkRuntime.cpp
		(SharkRuntime::monitorexit_C): Remove unnecessary lock clear.

diffstat:

2 files changed, 5 insertions(+), 5 deletions(-)
ChangeLog                                         |    5 +++++
ports/hotspot/src/share/vm/shark/sharkRuntime.cpp |    5 -----

diffs (27 lines):

diff -r 6d968e7aa1f4 -r 1541cc6b4e0d ChangeLog
--- a/ChangeLog	Wed Jun 24 16:26:08 2009 -0400
+++ b/ChangeLog	Thu Jun 25 11:40:43 2009 +0100
@@ -1,3 +1,8 @@ 2009-06-24  Omair Majid  <omajid at redhat.
+2009-06-25  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/share/vm/shark/sharkRuntime.cpp
+	(SharkRuntime::monitorexit_C): Remove unnecessary lock clear.
+
 2009-06-24  Omair Majid  <omajid at redhat.com>
 
 	* rt/net/sourceforge/jnlp/security/CertWarningPane.java
diff -r 6d968e7aa1f4 -r 1541cc6b4e0d ports/hotspot/src/share/vm/shark/sharkRuntime.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkRuntime.cpp	Wed Jun 24 16:26:08 2009 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkRuntime.cpp	Thu Jun 25 11:40:43 2009 +0100
@@ -290,11 +290,6 @@ JRT_ENTRY(void, SharkRuntime::monitorexi
     THROW(vmSymbols::java_lang_IllegalMonitorStateException());
   }
   ObjectSynchronizer::slow_exit(object(), lock->lock(), thread);
-
-  // Free entry. This must be done here, since a pending exception
-  // might be installed on exit. If it is not cleared, the exception
-  // handling code will try to unlock the monitor again.
-  lock->set_obj(NULL); 
 }
 JRT_END
   



More information about the distro-pkg-dev mailing list