comparison src/share/vm/runtime/globals_ext.hpp @ 4715:6c995c08526c

7122880: Extend vendor-specific command interface to include manageable switches Summary: Add Flag::external_ext()/writable_ext(), both return false. Reviewed-by: coleenp, zgu
author phh
date Mon, 19 Dec 2011 15:50:47 -0500
parents cd00eaeebef6
children 80fe40862b02
comparison
equal deleted inserted replaced
4133:3b688d6ff3d0 4715:6c995c08526c
51 51
52 inline bool Flag::is_unlocked_ext() const { 52 inline bool Flag::is_unlocked_ext() const {
53 return true; 53 return true;
54 } 54 }
55 55
56 inline bool Flag::is_writeable_ext() const {
57 return false;
58 }
59
60 inline bool Flag::is_external_ext() const {
61 return false;
62 }
63
56 #endif // SHARE_VM_RUNTIME_GLOBALS_EXT_HPP 64 #endif // SHARE_VM_RUNTIME_GLOBALS_EXT_HPP