comparison src/share/vm/runtime/arguments.hpp @ 12220:8e94527f601e

8024007: Misc. cleanup of static agent code Summary: Minor cleanup of static agent code from 8014135 Reviewed-by: dcubed, sspitsyn
author bpittore
date Wed, 11 Sep 2013 20:03:34 -0400
parents bb57d48691f5
children 179cd89fb279
comparison
equal deleted inserted replaced
12186:313b724f8911 12220:8e94527f601e
142 bool is_absolute_path() const { return _is_absolute_path; } 142 bool is_absolute_path() const { return _is_absolute_path; }
143 void* os_lib() const { return _os_lib; } 143 void* os_lib() const { return _os_lib; }
144 void set_os_lib(void* os_lib) { _os_lib = os_lib; } 144 void set_os_lib(void* os_lib) { _os_lib = os_lib; }
145 AgentLibrary* next() const { return _next; } 145 AgentLibrary* next() const { return _next; }
146 bool is_static_lib() const { return _is_static_lib; } 146 bool is_static_lib() const { return _is_static_lib; }
147 void set_static_lib(bool static_lib) { _is_static_lib = static_lib; } 147 void set_static_lib(bool is_static_lib) { _is_static_lib = is_static_lib; }
148 bool valid() { return (_state == agent_valid); } 148 bool valid() { return (_state == agent_valid); }
149 void set_valid() { _state = agent_valid; } 149 void set_valid() { _state = agent_valid; }
150 void set_invalid() { _state = agent_invalid; } 150 void set_invalid() { _state = agent_invalid; }
151 151
152 // Constructor 152 // Constructor