src/share/vm/prims/jvmtiExport.hpp

changeset 1832
b4776199210f
parent 1648
6deeaebad47a
child 1907
c18cbe5936b8
child 1932
852d0157c696
     1.1 --- a/src/share/vm/prims/jvmtiExport.hpp	Mon Apr 26 11:27:21 2010 -0700
     1.2 +++ b/src/share/vm/prims/jvmtiExport.hpp	Mon Apr 26 23:59:45 2010 -0700
     1.3 @@ -58,7 +58,6 @@
     1.4    static int         _field_modification_count;
     1.5  
     1.6    static bool        _can_access_local_variables;
     1.7 -  static bool        _can_examine_or_deopt_anywhere;
     1.8    static bool        _can_hotswap_or_post_breakpoint;
     1.9    static bool        _can_modify_any_class;
    1.10    static bool        _can_walk_any_space;
    1.11 @@ -112,7 +111,6 @@
    1.12  
    1.13    // these should only be called by the friend class
    1.14    friend class JvmtiManageCapabilities;
    1.15 -  inline static void set_can_examine_or_deopt_anywhere(bool on)        { _can_examine_or_deopt_anywhere = (on != 0); }
    1.16    inline static void set_can_modify_any_class(bool on)                 { _can_modify_any_class = (on != 0); }
    1.17    inline static void set_can_access_local_variables(bool on)           { _can_access_local_variables = (on != 0); }
    1.18    inline static void set_can_hotswap_or_post_breakpoint(bool on)       { _can_hotswap_or_post_breakpoint = (on != 0); }
    1.19 @@ -220,7 +218,6 @@
    1.20    static void enter_live_phase();
    1.21  
    1.22    // ------ can_* conditions (below) are set at OnLoad and never changed ------------
    1.23 -  inline static bool can_examine_or_deopt_anywhere()              { return _can_examine_or_deopt_anywhere; }
    1.24    inline static bool can_modify_any_class()                       { return _can_modify_any_class; }
    1.25    inline static bool can_access_local_variables()                 { return _can_access_local_variables; }
    1.26    inline static bool can_hotswap_or_post_breakpoint()             { return _can_hotswap_or_post_breakpoint; }

mercurial