/hg/icedtea6: Fix an issue with lost asynchronous exceptions
gbenson at icedtea.classpath.org
gbenson at icedtea.classpath.org
Thu Mar 18 09:40:36 PDT 2010
changeset f98b3c5d3511 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=f98b3c5d3511
author: Gary Benson <gbenson at redhat.com>
date: Thu Mar 18 16:40:26 2010 +0000
Fix an issue with lost asynchronous exceptions
diffstat:
2 files changed, 7 insertions(+), 2 deletions(-)
ChangeLog | 7 +++++++
ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp | 2 --
diffs (33 lines):
diff -r 675790fd9029 -r f98b3c5d3511 ChangeLog
--- a/ChangeLog Wed Mar 17 14:47:18 2010 +0100
+++ b/ChangeLog Thu Mar 18 16:40:26 2010 +0000
@@ -1,3 +1,10 @@ 2010-03-17 Nobuhiro Iwamatsu <iwamatsu@
+2010-03-18 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
+ (CppInterpreter::native_entry): Remove unnecessary calls to
+ JavaThread::set_do_not_unlock and JavaThread::clr_do_not_unlock,
+ fixing an issue that caused asynchronous exceptions to be lost.
+
2010-03-17 Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
* acinclude.m4 (IT_SET_ARCH_SETTINGS): Define architecture as sh
diff -r 675790fd9029 -r f98b3c5d3511 ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp Wed Mar 17 14:47:18 2010 +0100
+++ b/ports/hotspot/src/cpu/zero/vm/cppInterpreter_zero.cpp Thu Mar 18 16:40:26 2010 +0000
@@ -206,7 +206,6 @@ void CppInterpreter::native_entry(method
// Update the invocation counter
if ((UseCompiler || CountCompiledCalls) && !method->is_synchronized()) {
- thread->set_do_not_unlock();
InvocationCounter *counter = method->invocation_counter();
counter->increment();
if (counter->reached_InvocationLimit()) {
@@ -215,7 +214,6 @@ void CppInterpreter::native_entry(method
if (HAS_PENDING_EXCEPTION)
goto unwind_and_return;
}
- thread->clr_do_not_unlock();
}
// Lock if necessary
More information about the distro-pkg-dev
mailing list