comparison src/share/vm/prims/jvmtiExport.cpp @ 1213:6deeaebad47a

6902182: 4/4 Starting with jdwp agent should not incur performance penalty Summary: Rename can_post_exceptions support to can_post_on_exceptions. Add support for should_post_on_exceptions flag to permit per JavaThread optimizations. Reviewed-by: never, kvn, dcubed Contributed-by: tom.deneau@amd.com
author dcubed
date Mon, 01 Feb 2010 17:35:05 -0700
parents 3908ad124838
children b4776199210f
comparison
equal deleted inserted replaced
1196:f3345b7b01b4 1213:6deeaebad47a
875 ////////////////////////////////////////////////////////////////////////////// 875 //////////////////////////////////////////////////////////////////////////////
876 876
877 bool JvmtiExport::_can_get_source_debug_extension = false; 877 bool JvmtiExport::_can_get_source_debug_extension = false;
878 bool JvmtiExport::_can_maintain_original_method_order = false; 878 bool JvmtiExport::_can_maintain_original_method_order = false;
879 bool JvmtiExport::_can_post_interpreter_events = false; 879 bool JvmtiExport::_can_post_interpreter_events = false;
880 bool JvmtiExport::_can_post_exceptions = false; 880 bool JvmtiExport::_can_post_on_exceptions = false;
881 bool JvmtiExport::_can_post_breakpoint = false; 881 bool JvmtiExport::_can_post_breakpoint = false;
882 bool JvmtiExport::_can_post_field_access = false; 882 bool JvmtiExport::_can_post_field_access = false;
883 bool JvmtiExport::_can_post_field_modification = false; 883 bool JvmtiExport::_can_post_field_modification = false;
884 bool JvmtiExport::_can_post_method_entry = false; 884 bool JvmtiExport::_can_post_method_entry = false;
885 bool JvmtiExport::_can_post_method_exit = false; 885 bool JvmtiExport::_can_post_method_exit = false;
906 bool JvmtiExport::_should_post_garbage_collection_start = false; 906 bool JvmtiExport::_should_post_garbage_collection_start = false;
907 bool JvmtiExport::_should_post_garbage_collection_finish = false; 907 bool JvmtiExport::_should_post_garbage_collection_finish = false;
908 bool JvmtiExport::_should_post_object_free = false; 908 bool JvmtiExport::_should_post_object_free = false;
909 bool JvmtiExport::_should_post_resource_exhausted = false; 909 bool JvmtiExport::_should_post_resource_exhausted = false;
910 bool JvmtiExport::_should_post_vm_object_alloc = false; 910 bool JvmtiExport::_should_post_vm_object_alloc = false;
911 bool JvmtiExport::_should_post_on_exceptions = false;
911 912
912 //////////////////////////////////////////////////////////////////////////////////////////////// 913 ////////////////////////////////////////////////////////////////////////////////////////////////
913 914
914 915
915 // 916 //