changeset 1708:f07666c3167a

Edward Nevill (ed@camswl.com)
author "Edward Nevill (ed@camswl.com)"
date Tue, 15 Sep 2009 09:48:53 +0100
parents f08ebc18b41a
children 524b551b6a8a
files ChangeLog ports/hotspot/src/cpu/zero/vm/asm_helper.cpp
diffstat 2 files changed, 4 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Sep 15 09:39:34 2009 +0100
+++ b/ChangeLog	Tue Sep 15 09:48:53 2009 +0100
@@ -1,3 +1,7 @@
+2009-09-15  Edward Nevill  <ed@camswl.com>
+
+	* asm_helper.cpp: Missed from previous checkin
+
 2009-09-11  Andrew John Hughes  <ahughes@redhat.com>
 
 	* Makefile.am:
--- a/ports/hotspot/src/cpu/zero/vm/asm_helper.cpp	Tue Sep 15 09:39:34 2009 +0100
+++ b/ports/hotspot/src/cpu/zero/vm/asm_helper.cpp	Tue Sep 15 09:48:53 2009 +0100
@@ -16,23 +16,6 @@
 
 #ifndef STATIC_OFFSETS
 
-extern "C" void sanity_check_backtrace(ZeroFrame *frame, int *regs);
-
-extern "C" void check_java_threads_backtrace(int *regs)
-{
-  for (JavaThread* jt = Threads::first(); jt != NULL; jt = jt->next()) {
-    if (jt->threadObj() == NULL   ||
-        jt->is_exiting() ||
-        !java_lang_Thread::is_alive(jt->threadObj())   ||
-        jt->is_hidden_from_external_view()) {
-      continue;
-    }
-    if (jt->is_jvmti_agent_thread()) continue;
-    if (jt->is_attaching()) continue;
-    sanity_check_backtrace(jt->top_zero_frame(), regs);
-  }
-}
-
 /* Thease functions allow the ASM interpreter to call CPP virtual functions.
  * Otherwise the ASM interpreter has to grup around in the VTABLE which is
  * not very portable.