view patches/icedtea-cc-interp-jvmti.patch @ 1324:146e2cc88520

2009-01-22 Gary Benson <gbenson@redhat.com> * patches/icedtea-cc-interp-jvmti.patch: Reenable thread signalling.
author Gary Benson <gbenson@redhat.com>
date Thu, 22 Jan 2009 08:24:50 -0500
parents 8ed37e6cc2df
children
line wrap: on
line source

--- openjdk/hotspot/src/share/vm/prims/jvmtiManageCapabilities.cpp	2008-12-24 12:01:18.000000000 +0000
+++ openjdk/hotspot/src/share/vm/prims/jvmtiManageCapabilities.cpp	2008-12-24 12:00:29.000000000 +0000
@@ -115,8 +115,10 @@
   jvmtiCapabilities jc;
 
   memset(&jc, 0, sizeof(jc));
+#ifndef CC_INTERP
   jc.can_pop_frame = 1;
   jc.can_force_early_return = 1;
+#endif // !CC_INTERP
   jc.can_get_source_debug_extension = 1;
   jc.can_access_local_variables = 1;
   jc.can_maintain_original_method_order = 1;