< prev index next >

src/hotspot/share/oops/instanceKlassFlags.hpp

Print this page
*** 67,10 ***
--- 67,11 ---
      status(is_being_redefined                , 1 << 0) /* True if the klass is being redefined */ \
      status(has_resolved_methods              , 1 << 1) /* True if the klass has resolved MethodHandle methods */ \
      status(has_been_redefined                , 1 << 2) /* class has been redefined */ \
      status(is_scratch_class                  , 1 << 3) /* class is the redefined scratch class */ \
      status(is_marked_dependent               , 1 << 4) /* class is the redefined scratch class */ \
+     status(has_init_deps_processed           , 1 << 5) /* all init dependencies are processed */ \
      /* end of list */
  
  #define IK_STATUS_ENUM_NAME(name, value)    _misc_##name = value,
    enum {
      IK_STATUS_DO(IK_STATUS_ENUM_NAME)
< prev index next >