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

src/share/vm/runtime/vmStructs.cpp

Print this page

        

*** 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 **** \ /*************************/ \ /* 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) \ \ /*************/ \ /* Arguments */ \ /*************/ \ \ --- 1177,1187 ---- \ /*************************/ \ /* JVMTI */ \ /*************************/ \ \ ! 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