comparison src/os_cpu/windows_x86/vm/orderAccess_windows_x86.inline.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 a6bff45449bc
children 4fc084dac61e
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 OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP
26 #define OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP
27
28 #include "runtime/orderAccess.hpp"
29 #include "vm_version_x86.hpp"
24 30
25 #pragma warning(disable: 4035) // Disables warnings reporting missing return statement 31 #pragma warning(disable: 4035) // Disables warnings reporting missing return statement
26 32
27 // Implementation of class OrderAccess. 33 // Implementation of class OrderAccess.
28 34
206 release_store_fence((volatile jint*)p, (jint)v); 212 release_store_fence((volatile jint*)p, (jint)v);
207 #endif // AMD64 213 #endif // AMD64
208 } 214 }
209 215
210 #pragma warning(default: 4035) // Enables warnings reporting missing return statement 216 #pragma warning(default: 4035) // Enables warnings reporting missing return statement
217
218 #endif // OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP