src/share/vm/utilities/macros.hpp

Print this page

        

*** 20,29 **** --- 20,32 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_UTILITIES_MACROS_HPP + #define SHARE_VM_UTILITIES_MACROS_HPP + // Use this to mark code that needs to be cleaned up (for development only) #define NEEDS_CLEANUP // Makes a string of the argument (which is not macro-expanded) #define STR(a) #a
*** 232,236 **** --- 235,241 ---- #define EMBEDDED_ONLY(code) #define NOT_EMBEDDED(code) code #endif #define define_pd_global(type, name, value) const type pd_##name = value; + + #endif // SHARE_VM_UTILITIES_MACROS_HPP