comparison src/share/vm/utilities/macros.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 18c378513575
children bf8517f4e4d0
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_UTILITIES_MACROS_HPP
26 #define SHARE_VM_UTILITIES_MACROS_HPP
24 27
25 // Use this to mark code that needs to be cleaned up (for development only) 28 // Use this to mark code that needs to be cleaned up (for development only)
26 #define NEEDS_CLEANUP 29 #define NEEDS_CLEANUP
27 30
28 // Makes a string of the argument (which is not macro-expanded) 31 // Makes a string of the argument (which is not macro-expanded)
232 #define EMBEDDED_ONLY(code) 235 #define EMBEDDED_ONLY(code)
233 #define NOT_EMBEDDED(code) code 236 #define NOT_EMBEDDED(code) code
234 #endif 237 #endif
235 238
236 #define define_pd_global(type, name, value) const type pd_##name = value; 239 #define define_pd_global(type, name, value) const type pd_##name = value;
240
241 #endif // SHARE_VM_UTILITIES_MACROS_HPP