src/share/vm/runtime/vmStructs.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/vmStructs.cpp	Mon Sep 17 16:14:18 2012
--- new/src/share/vm/runtime/vmStructs.cpp	Mon Sep 17 16:14:17 2012

*** 228,237 **** --- 228,246 ---- static inline uint64_t cast_uint64_t(size_t x) { return x; } + #if INCLUDE_JVMTI + #define JVMTI_STRUCTS(static_field) \ + static_field(JvmtiExport, _can_access_local_variables, bool) \ + static_field(JvmtiExport, _can_hotswap_or_post_breakpoint, bool) \ + static_field(JvmtiExport, _can_post_on_exceptions, bool) \ + static_field(JvmtiExport, _can_walk_any_space, bool) + #else + #define JVMTI_STRUCTS(static_field) + #endif // INCLUDE_JVMTI typedef HashtableEntry<intptr_t, mtInternal> IntptrHashtableEntry; typedef Hashtable<intptr_t, mtInternal> IntptrHashtable; typedef Hashtable<Symbol*, mtSymbol> SymbolHashtable; typedef HashtableEntry<Symbol*, mtClass> SymbolHashtableEntry;
*** 1168,1181 **** --- 1177,1187 ---- \ /*************************/ \ /* JVMTI */ \ /*************************/ \ \ ! static_field(JvmtiExport, _can_access_local_variables, bool) \ static_field(JvmtiExport, _can_hotswap_or_post_breakpoint, bool) \ static_field(JvmtiExport, _can_post_on_exceptions, bool) \ static_field(JvmtiExport, _can_walk_any_space, bool) \ ! JVMTI_STRUCTS(static_field) \ \ /*************/ \ /* Arguments */ \ /*************/ \ \

src/share/vm/runtime/vmStructs.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File