changeset in /hg/icedtea: 2009-06-25 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Mon Aug 3 10:31:20 PDT 2009


changeset b26e1c8bfc51 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=b26e1c8bfc51
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 9ef90ed6dac9 -r b26e1c8bfc51 ChangeLog
--- a/ChangeLog	Tue Jun 23 16:31:22 2009 +0200
+++ b/ChangeLog	Thu Jun 25 11:40:43 2009 +0100
@@ -1,3 +1,8 @@ 2009-06-23  Matthias Klose  <doko at ubuntu
+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-23  Matthias Klose  <doko at ubuntu.com>
 
 	* ports/hotspot/src/share/vm/shark/llvmHeaders.hpp: Fix header location.
diff -r 9ef90ed6dac9 -r b26e1c8bfc51 ports/hotspot/src/share/vm/shark/sharkRuntime.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkRuntime.cpp	Tue Jun 23 16:31:22 2009 +0200
+++ 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